  :root{
    --bg:#fdf6de;
    --bg-alt:#f8ecc0;
    --bg-alt-2:#00305c;
    --card:#fffbea;
    --gold:#d4a818;
    --gold-light:#f0dfa0;
    --gold-dim:#b58e2c;
    --gold-deep:#7d5f0d;
    --gold-soft:rgba(212,168,24,0.12);
    --navy:#123a5c;
    --navy-deep:#081f33;
    --navy-soft:rgba(18,58,92,0.1);
    --cream:#201d1a;
    --stone:#453f38;
    --stone-dim:#3d3832;
    --ink-strong:#141312;
    --blue:#2484cc;
    --blue-deep:#155886;
    --blue-light:#8fc4ea;
    --green:#0c9060;
    --green-deep:#0a6944;
    --green-light:#7fd6ac;
    --anim:#edc844;
    --anim-card:#22b078;
    --line: rgba(18,58,92,0.16);
    --line-strong: rgba(18,58,92,0.32);
    --font-display: "Figtree", Helvetica, Arial, sans-serif;
    --font-body: "Figtree", Helvetica, Arial, sans-serif;
    --container: 1240px;
    --radius: 2px;
    --shadow-gold: 0 20px 50px -20px rgba(36,132,204,0.4);
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  body{
    margin:0;
    background:var(--bg);
    color:var(--cream);
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{margin:0; padding:0; list-style:none;}
  h1,h2,h3,h4{margin:0; font-family:var(--font-display); font-weight:600; letter-spacing:-0.01em;}
  p{margin:0;}
  button{font-family:inherit; cursor:pointer;}

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

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:var(--font-body);
    font-size:12px;
    font-weight:700;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--navy);
  }
  .eyebrow::before{
    content:"";
    width:22px;
    height:1px;
    background:var(--navy);
  }

  .section{ padding:76px 0; position:relative; }
  .section-alt{ background:var(--bg-alt); }

  .section-head{
    max-width:640px;
    margin-bottom:44px;
  }
  .section-head h2{
    font-size:clamp(28px, 5vw, 42px);
    line-height:1.15;
    margin-top:14px;
    color:var(--cream);
  }
  .section-head p{
    margin-top:14px;
    color:var(--stone);
    font-size:16px;
  }
  .section-head.center{
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }
  .section-head.center .eyebrow::before{display:none;}

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 28px;
    font-family:var(--font-body);
    font-weight:700;
    font-size:14px;
    letter-spacing:0.02em;
    border-radius:var(--radius);
    border:1px solid transparent;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:linear-gradient(135deg, var(--blue-deep), #123f5c);
    color:#ffffff;
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow-gold); }
  .btn-ghost{
    border-color:var(--navy);
    color:var(--navy);
    background:transparent;
  }
  .btn-ghost:hover{ background:var(--navy); color:#fff; }
  .btn svg{ width:16px; height:16px; flex-shrink:0; }

  .visually-hidden{
    position:absolute; width:1px; height:1px; overflow:hidden;
    clip:rect(0,0,0,0); white-space:nowrap; border:0; padding:0; margin:-1px;
  }

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

  /* ============ HEADER ============ */
  .site-header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    border-bottom:1px solid rgba(212,168,24,0.25);
    transition:border-color .3s ease;
  }
  /* Blur/background lives on a pseudo-element (not on .site-header itself) so that
     backdrop-filter doesn't create a new containing block for fixed-position
     descendants (like the mobile .main-nav). That containing-block side effect
     was causing the mobile menu to be clipped to the header's box instead of
     covering the full viewport. */
  .site-header::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:linear-gradient(180deg, rgba(0,28,64,0.95) 0%, rgba(30,68,38,0.95) 100%);
    backdrop-filter:blur(14px) saturate(120%);
    -webkit-backdrop-filter:blur(14px) saturate(120%);
    transition:background .3s ease;
  }
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:66px;
  }
  .brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
  .brand-logo{ height:36px; width:auto; }
  .brand-name{
    font-family:var(--font-display);
    font-size:16px;
    font-weight:600;
    letter-spacing:0.01em;
    display:none;
    background:linear-gradient(100deg, var(--gold-light), var(--anim) 85%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:var(--gold-light);
  }
  .brand-name em{ font-style:normal; font-weight:500; }

  .main-nav{
    position:fixed;
    top:66px; left:0; right:0; bottom:0;
    background:var(--bg-alt-2);
    padding:32px 24px;
    transform:translateX(100%);
    transition:transform .35s ease;
    overflow-y:auto;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ display:flex; flex-direction:column; gap:4px; }
  .main-nav a{
    display:block;
    padding:14px 4px;
    font-size:20px;
    font-family:var(--font-display);
    color:var(--gold-light);
    border-bottom:1px solid rgba(212,168,24,0.18);
    transition:color .25s ease, padding-left .25s ease, letter-spacing .25s ease;
  }
  .main-nav a:hover{ color:var(--anim); padding-left:10px; }

  .header-actions{ display:flex; align-items:center; gap:14px; }
  .header-cta{ display:none; padding:11px 20px; font-size:13px; }

  .menu-toggle{
    width:40px; height:40px;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
    background:transparent; border:1px solid rgba(212,168,24,0.4); border-radius:var(--radius);
  }
  .menu-toggle span{
    width:18px; height:1.5px; background:var(--gold-light);
    transition:transform .3s ease, opacity .3s ease, background .3s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

  /* ============ HERO ============ */
  .hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    padding:130px 0 80px;
    overflow:hidden;
    /* Ambient backdrop: the real photo texture (same paint/paper grain and
       decorative flourish pattern as the desktop version), but with the
       embedded emblem removed — built by mirroring the crest-free left
       half. This keeps the authentic photographic look everywhere without
       ever showing a second, uncontrolled copy of the emblem. */
    background-image:url('img/hero-bg-clean.webp');
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
  }
  /* The emblem itself: a separate, sharp layer (own crisp cutout, no
     background rectangle) so it always renders fully and crisply,
     regardless of viewport aspect ratio. */
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    background-image:url('img/hero-crest.webp');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:min(66vw, 320px) auto;
    opacity:.92;
    pointer-events:none;
  }
  .hero-overlay{
    position:absolute; inset:0; z-index:0;
    background:linear-gradient(100deg, rgba(3,18,34,0.85) 0%, rgba(3,18,34,0.6) 38%, rgba(3,18,34,0.22) 62%, rgba(3,18,34,0) 84%);
  }

  .hero-inner{ position:relative; z-index:1; text-align:left; }
  .hero-eyebrow{
    justify-content:flex-start;
    color:var(--gold-light);
    margin-bottom:22px;
  }
  .hero-eyebrow::before{ background:var(--gold-light); }
  .hero-title{
    font-size:clamp(40px, 10vw, 58px);
    line-height:1.08;
    color:#ffffff;
    font-weight:600;
  }
  .hero-title span{
    color:var(--gold-light);
    background:linear-gradient(100deg, var(--gold-light), var(--gold) 65%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  .hero-lead{
    max-width:560px;
    margin:26px 0 0;
    color:rgba(255,255,255,0.82);
    font-size:16px;
    line-height:1.7;
  }
  .hero-actions{
    margin-top:38px;
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:stretch;
  }
  .hero-actions .btn{ width:100%; }
  .hero-actions .btn-ghost{ border-color:rgba(255,255,255,0.55); color:#ffffff; }
  .hero-actions .btn-ghost:hover{ background:rgba(255,255,255,0.14); color:#ffffff; }

  .hero-scroll{
    position:absolute;
    bottom:26px; left:50%;
    transform:translateX(-50%);
    width:1px; height:46px;
    background:rgba(255,255,255,0.35);
    z-index:1;
    display:none;
  }
  .hero-scroll span{
    position:absolute; top:0; left:-2px;
    width:5px; height:5px;
    border-radius:50%;
    background:var(--anim);
    animation:scrollDown 2.4s ease-in-out infinite;
  }
  @keyframes scrollDown{
    0%{ top:0; opacity:0; }
    30%{ opacity:1; }
    100%{ top:100%; opacity:0; }
  }

  /* ============ O NAMA ============ */
  .pillars{
    display:grid;
    grid-template-columns:1fr;
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .pillar-card{
    background:var(--bg);
    padding:34px 26px;
    position:relative;
    transition:background .3s ease, transform .3s ease;
  }
  .pillar-card:hover{ background:#fffdf3; transform:translateY(-4px); }
  .pillar-icon{
    width:44px; height:44px;
    display:flex; align-items:center; justify-content:center;
    color:var(--navy);
    border:1px solid var(--line-strong);
    border-radius:50%;
    margin-bottom:20px;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .pillar-card:hover .pillar-icon{ transform:scale(1.1) rotate(-6deg); }
  .pillar-icon svg{ width:20px; height:20px; }
  .pillar-card--blue .pillar-icon{ color:var(--blue); border-color:rgba(36,132,204,0.4); }
  .pillar-card--blue .pillar-index{ color:var(--blue-deep); }
  .pillar-card--blue:hover .pillar-icon{ box-shadow:0 0 0 6px rgba(36,132,204,0.14); }
  .pillar-card--green .pillar-icon{ color:var(--green); border-color:rgba(12,144,96,0.4); }
  .pillar-card--green .pillar-index{ color:var(--green-deep); }
  .pillar-card--green:hover .pillar-icon{ box-shadow:0 0 0 6px rgba(12,144,96,0.14); }
  .pillar-card--gold:hover .pillar-icon{ box-shadow:0 0 0 6px rgba(212,168,24,0.16); }
  .pillar-index{
    display:block;
    font-family:var(--font-display);
    font-size:22px;
    color:var(--navy);
    margin-bottom:10px;
  }
  .pillar-card p{ color:var(--stone); font-size:15px; line-height:1.7; }

  .values-block{ margin-top:64px; }
  .values-block > .eyebrow{ margin-bottom:28px; }
  .values-block .eyebrow::before{ display:none; }
  .values-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
  }
  .value-item{ border-top:1px solid var(--line); padding-top:18px; transition:border-color .3s ease, transform .3s ease; }
  .value-item:hover{ border-color:var(--anim-card); transform:translateY(-4px); }
  .value-num{
    font-family:var(--font-display);
    font-size:13px;
    color:var(--navy);
    letter-spacing:0.05em;
    transition:color .3s ease;
  }
  .value-item:hover .value-num{ color:var(--anim-card); }
  .value-item h4{
    font-size:18px;
    color:var(--cream);
    margin-top:8px;
    font-weight:600;
  }
  .value-item p{ color:var(--stone); font-size:14px; margin-top:8px; line-height:1.6; }

  /* ============ USLUGE ============ */
  .services-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }
  .service-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px 24px;
    transition:border-color .25s ease, transform .25s ease, background .25s ease;
  }
  .service-card:hover{
    border-color:var(--anim-card);
    transform:translateY(-3px);
    background:#f0faf5;
    box-shadow:0 14px 34px -18px rgba(34,176,120,0.55);
  }
  .service-icon{
    width:46px; height:46px;
    display:flex; align-items:center; justify-content:center;
    color:#ffffff;
    background:linear-gradient(135deg, var(--blue), var(--blue-deep));
    border-radius:50%;
    margin-bottom:18px;
  }
  .service-icon svg{ width:22px; height:22px; }
  .service-card h3{
    font-size:19px;
    color:var(--cream);
    font-weight:600;
    margin-bottom:8px;
  }
  .service-card p{ color:var(--stone); font-size:14.5px; line-height:1.6; }

  /* ============ KOME POMAZEMO ============ */
  .audience-list{
    display:grid;
    grid-template-columns:1fr;
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .audience-list li{
    background:var(--bg);
    display:flex;
    align-items:center;
    gap:16px;
    padding:22px 20px;
    font-family:var(--font-display);
    font-size:18px;
    color:var(--cream);
    transition:background .25s ease, padding-left .25s ease;
  }
  .audience-list li:hover{
    background:#f0faf5;
    padding-left:26px;
  }
  .audience-icon{
    width:38px; height:38px;
    flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    color:var(--navy);
    border:1px solid var(--line-strong);
    border-radius:50%;
    transition:color .25s ease, border-color .25s ease, transform .25s ease;
  }
  .audience-list li:hover .audience-icon{
    color:var(--anim-card);
    border-color:var(--anim-card);
    transform:scale(1.08);
  }
  .audience-icon svg{ width:18px; height:18px; }

  /* ============ KAKO RADIMO ============ */
  .process-list{
    list-style:none;
    counter-reset:none;
    display:flex;
    flex-direction:column;
  }
  .process-item{
    display:flex;
    gap:20px;
    padding:26px 0;
    border-top:1px solid var(--line);
    transition:padding-left .25s ease, border-color .25s ease, transform .25s ease, padding-top .25s ease;
  }
  .process-item:last-child{ border-bottom:1px solid var(--line); }
  .process-item:hover{
    padding-left:12px;
    border-color:var(--anim-card);
  }
  .process-num{
    font-family:var(--font-display);
    font-size:26px;
    color:var(--navy);
    flex-shrink:0;
    width:44px;
    transition:color .25s ease;
  }
  .process-item:hover .process-num{ color:var(--anim-card); }
  .process-item h4{ font-size:17px; color:var(--cream); font-weight:600; }
  .process-item p{ color:var(--stone); font-size:14.5px; margin-top:6px; line-height:1.6; }

  /* ============ NASI BRENDOVI ============ */
  .brands-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }
  .brand-card{
    background:var(--card);
    border:1px solid var(--line);
    padding:16px 16px 26px;
    text-align:center;
    transition:transform .25s ease, border-color .25s ease;
  }
  .brand-card:hover{ transform:translateY(-3px); border-color:var(--anim-card); box-shadow:0 14px 34px -18px rgba(34,176,120,0.55); }

  .brand-preview{
    display:block;
    border:1px solid var(--line-strong);
    border-radius:6px;
    overflow:hidden;
    margin-bottom:20px;
    background:#fff;
    transition:opacity .2s ease;
  }
  .brand-preview:hover{ opacity:0.92; }
  .brand-preview-bar{
    display:flex;
    align-items:center;
    gap:6px;
    padding:9px 12px;
    background:#eef1f3;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }
  .brand-preview-bar .dot{
    width:7px; height:7px;
    border-radius:50%;
    background:#c9cdd1;
    display:inline-block;
  }
  .brand-preview-url{
    margin-left:8px;
    font-family:var(--font-body);
    font-size:11px;
    color:#7c8790;
    background:#fff;
    border-radius:20px;
    padding:3px 12px;
    flex:1;
    text-align:left;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .brand-preview-body{
    position:relative;
    height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#eef1f3;
  }
  .brand-preview-shot{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:top center;
    transition:transform .4s ease;
  }
  .brand-card:hover .brand-preview-shot{ transform:scale(1.04); }

  .brand-card h3{ font-size:19px; color:var(--cream); font-weight:600; }
  .brand-card p{ color:var(--stone); font-size:14px; margin-top:8px; line-height:1.6; }
  .brand-visit{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:14px;
    font-size:13.5px;
    font-weight:700;
    color:var(--blue-deep);
  }
  .brand-visit svg{ width:14px; height:14px; }
  .brand-visit:hover{ color:var(--navy); }

  .brands-quote{
    margin-top:52px;
    font-family:var(--font-body);
    font-style:normal;
    font-size:clamp(19px, 3.4vw, 24px);
    line-height:1.5;
    color:var(--navy);
    text-align:center;
    max-width:680px;
    margin-left:auto;
    margin-right:auto;
    position:relative;
    padding-top:28px;
  }
  .brands-quote::before{
    content:"";
    position:absolute;
    top:0; left:50%;
    transform:translateX(-50%);
    width:36px; height:1px;
    background:rgba(18,58,92,0.5);
  }

  /* ============ ZASTO ============ */
  .why-section .section-head{ margin-left:auto; margin-right:auto; text-align:center; }
  .why-section .eyebrow{ justify-content:center; }
  .why-section .eyebrow::before{ display:none; }
  .why-list{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    max-width:640px;
    margin:0 auto;
  }
  .why-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 18px;
    background:var(--bg);
    border:1px solid var(--line);
    font-size:15.5px;
    color:var(--cream);
    font-weight:600;
  }
  .why-check{
    width:26px; height:26px;
    flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    color:#ffffff;
    background:var(--green);
    border-radius:50%;
  }
  .why-check svg{ width:14px; height:14px; }

  /* ============ PORTFOLIO ============ */
  .portfolio-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }
  .portfolio-card{
    background:var(--bg);
    border:1px solid var(--line);
    overflow:hidden;
    transition:transform .25s ease, border-color .25s ease;
  }
  .portfolio-card:hover{ transform:translateY(-3px); border-color:var(--anim-card); box-shadow:0 14px 34px -18px rgba(34,176,120,0.55); }
  .portfolio-thumb{
    position:relative;
    height:180px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
  }
  .portfolio-thumb svg{
    position:absolute; inset:0;
    width:100%; height:100%;
    display:block;
  }
  .portfolio-card:hover .portfolio-thumb svg{ transform:scale(1.04); }
  .portfolio-thumb svg{ transition:transform .4s ease; }
  .portfolio-thumb-tag{
    position:absolute;
    left:12px; bottom:12px;
    z-index:1;
    background:rgba(255,255,255,0.94);
    color:var(--navy);
    font-family:var(--font-body);
    font-weight:700;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.06em;
    padding:5px 12px;
    border-radius:20px;
  }
  .portfolio-card h3{
    font-size:17px; color:var(--cream); font-weight:600;
    padding:20px 22px 0;
  }
  .portfolio-card p{
    color:var(--stone); font-size:14px; line-height:1.6;
    padding:8px 22px 22px;
  }
  .portfolio-cta{ margin-top:36px; text-align:center; }

  /* ============ BLOG ============ */
  .blog-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
  }
  .blog-card{
    background:var(--bg);
    border:1px solid var(--line);
    padding:26px 24px;
    transition:transform .25s ease, border-color .25s ease;
  }
  .blog-card:hover{ transform:translateY(-3px); border-color:var(--anim-card); box-shadow:0 14px 34px -18px rgba(34,176,120,0.55); }
  .blog-tag{
    display:inline-block;
    font-size:11px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--navy);
    border:1px solid rgba(18,58,92,0.35);
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:16px;
  }
  .blog-card h3{ font-size:18px; color:var(--cream); font-weight:600; line-height:1.35; }
  .blog-card p{ color:var(--stone); font-size:14px; margin-top:10px; line-height:1.6; }
  .blog-tag--gold{ color:var(--navy); border-color:rgba(18,58,92,0.4); }
  .blog-tag--blue{ color:var(--blue-deep); border-color:rgba(36,132,204,0.5); }
  .blog-tag--green{ color:var(--green-deep); border-color:rgba(12,144,96,0.5); }
  .blog-link{
    display:inline-block;
    margin-top:16px;
    font-size:13.5px;
    font-weight:700;
    color:var(--blue-deep);
  }

  /* ============ KONTAKT ============ */
  .kontakt-section{ background:var(--bg-alt); }
  .kontakt-inner{
    display:grid;
    grid-template-columns:1fr;
    gap:48px;
  }
  .kontakt-info h2{ font-size:clamp(26px,5vw,36px); margin-top:14px; line-height:1.2; }
  .kontakt-lead{ color:var(--stone); margin-top:16px; font-size:15.5px; line-height:1.7; }

  .kontakt-details{ margin-top:34px; display:flex; flex-direction:column; gap:18px; }
  .kontakt-details li{ display:block; }
  .kontakt-link{
    display:flex; align-items:center; gap:14px;
    text-decoration:none;
    border-radius:8px;
    margin:-6px;
    padding:6px;
    transition:background .2s ease, transform .2s ease;
  }
  .kontakt-link:hover{ background:var(--gold-soft); transform:translateX(2px); }
  .kontakt-link:hover .kontakt-icon{ background:var(--navy); color:#fff; border-color:var(--navy); }
  .kontakt-icon{
    width:40px; height:40px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    color:var(--navy);
    border:1px solid var(--line-strong);
    border-radius:50%;
    transition:background .2s ease, color .2s ease, border-color .2s ease;
  }
  .kontakt-icon svg{ width:18px; height:18px; }
  .kontakt-details div{ display:flex; flex-direction:column; }
  .kontakt-label{ font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--stone-dim); }
  .kontakt-details span span:last-child{ color:var(--cream); font-size:15px; margin-top:2px; }

  .kontakt-social{ display:flex; gap:12px; margin-top:32px; }
  .kontakt-social a{
    width:40px; height:40px;
    display:flex; align-items:center; justify-content:center;
    border:1px solid var(--line-strong);
    border-radius:50%;
    color:var(--navy);
    transition:background .25s ease, color .25s ease;
  }
  .kontakt-social a:hover{ background:var(--blue); color:#ffffff; }
  .kontakt-social svg{ width:17px; height:17px; }

  .kontakt-form{
    position:relative;
    background:var(--card);
    border:1px solid var(--line);
    padding:30px 24px;
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .form-row{ display:grid; grid-template-columns:1fr; gap:18px; }
  .form-field{ display:flex; flex-direction:column; gap:8px; }
  .form-field span{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:var(--stone); }
  .form-field input, .form-field textarea{
    background:var(--bg);
    border:1px solid var(--line-strong);
    border-radius:var(--radius);
    padding:13px 14px;
    color:var(--cream);
    font-family:var(--font-body);
    font-size:15px;
    resize:vertical;
  }
  .form-field input:focus, .form-field textarea:focus{
    outline:none;
    border-color:var(--blue);
  }
  .form-submit{ margin-top:6px; }
  .form-note{ font-size:13.5px; color:var(--blue-deep); min-height:18px; }
  .form-hp{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

  /* ============ FOOTER ============ */
  .site-footer{
    background:linear-gradient(180deg, rgba(30,68,38,0.98) 0%, rgba(0,28,64,0.98) 100%);
    border-top:1px solid rgba(255,255,255,0.08);
    padding:52px 0 26px;
  }
  .footer-inner{ display:flex; flex-direction:column; gap:32px; align-items:flex-start; }
  .footer-logo{ height:40px; width:auto; }
  .footer-brand p{ color:var(--blue-light); font-family:var(--font-display); font-style:italic; font-weight:500; margin-top:12px; font-size:15px; }
  .footer-nav{ display:flex; flex-wrap:wrap; gap:14px 20px; }
  .footer-nav a{ font-size:13.5px; color:rgba(250,232,168,0.8); }
  .footer-nav a:hover{ color:var(--green-light); }
  .footer-bottom{
    width:100%;
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:22px;
    font-size:12.5px;
    color:rgba(250,232,168,0.55);
  }

  /* ============ SCROLL REVEAL ============ */
  .site-header.scrolled::before{ background:linear-gradient(180deg, rgba(0,20,46,0.98) 0%, rgba(22,50,28,0.98) 100%); }
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal-in{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; }
  }

  /* ======================================================
     TABLET — 768px and up
  ====================================================== */
  @media (min-width:768px){
    .section{ padding:100px 0; }
    .container{ padding:0 32px; }

    .brand-name{ display:block; }
    .header-cta{ display:inline-flex; }

    .hero{
      padding:150px 0 100px;
    }
    .hero::before{
      background-position:96% center;
      background-size:30% auto;
      opacity:.92;
    }
    .hero-lead{ max-width:460px; }
    .hero-actions{ flex-direction:row; justify-content:flex-start; }
    .hero-actions .btn{ width:auto; }
    .hero-scroll{ display:block; }

    .pillars{ grid-template-columns:repeat(3,1fr); }
    .values-grid{ grid-template-columns:repeat(2,1fr); }

    .services-grid{ grid-template-columns:repeat(2,1fr); }

    .audience-list{ grid-template-columns:repeat(2,1fr); }

    .process-list{ position:relative; }
    .process-item{ padding-left:8px; }

    .brands-grid{ grid-template-columns:repeat(3,1fr); }

    .why-list{ grid-template-columns:repeat(2,1fr); max-width:none; }

    .portfolio-grid{ grid-template-columns:repeat(2,1fr); }
    .blog-grid{ grid-template-columns:repeat(2,1fr); }

    .kontakt-inner{ grid-template-columns:1fr; }
    .form-row{ grid-template-columns:1fr 1fr; }

    .footer-inner{ flex-direction:row; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; }
    .footer-nav{ max-width:420px; justify-content:flex-end; }
    .footer-bottom{ order:3; }
  }

  /* ======================================================
     LAPTOP — 1024px and up
  ====================================================== */
  @media (min-width:1024px){
    .header-inner{ height:82px; }
    .main-nav{
      position:static;
      background:none;
      padding:0;
      transform:none;
      overflow:visible;
      flex:1;
      margin:0 40px;
    }
    .main-nav ul{ flex-direction:row; justify-content:center; gap:30px; }
    .main-nav a{
      padding:6px 0;
      font-size:15px;
      font-family:var(--font-body);
      font-weight:600;
      border-bottom:none;
      position:relative;
    }
    .main-nav a::after{
      content:"";
      position:absolute; left:0; bottom:-4px;
      width:0; height:2px;
      background:var(--anim);
      transition:width .3s ease;
    }
    .main-nav a:hover{ color:var(--anim); padding-left:0; }
    .main-nav a:hover::after{ width:100%; }
    .menu-toggle{ display:none; }

    .hero{
      background-image:url('img/hero-bg.webp');
      background-position:62% center;
      background-size:cover;
    }
    .hero::before{ display:none; }

    .hero-title{ font-size:clamp(56px, 6.4vw, 78px); }
    .hero-lead{ font-size:17.5px; max-width:600px; }

    .section-head{ margin-bottom:60px; }
    .section-head h2{ font-size:clamp(34px, 3.6vw, 46px); }
    #brendovi .section-head{ max-width:none; }
    #brendovi .section-head h2{ white-space:nowrap; font-size:clamp(26px, 2.8vw, 46px); }
    #kako-radimo .section-head{ max-width:none; }
    #kako-radimo .section-head h2{ white-space:nowrap; font-size:clamp(26px, 2.8vw, 46px); }

    .pillars{ grid-template-columns:repeat(3,1fr); }
    .pillar-card{ padding:44px 36px; }

    .values-grid{ grid-template-columns:repeat(4,1fr); }

    .services-grid{ grid-template-columns:repeat(3,1fr); }

    .audience-list{ grid-template-columns:repeat(5,1fr); }
    .audience-list li{ flex-direction:column; text-align:center; gap:12px; padding:32px 16px; font-size:15.5px; }

    .process-list{ flex-direction:row; gap:0; }
    .process-item{
      flex-direction:column;
      border-top:none;
      border-left:1px solid var(--line);
      padding:0 24px;
      flex:1;
    }
    .process-item:last-child{ border-bottom:none; }
    .process-num{ width:auto; margin-bottom:16px; }
    .process-item:hover{ padding-left:24px; padding-top:6px; transform:translateY(-4px); }

    .brands-grid{ grid-template-columns:repeat(3,1fr); }
    .brand-card{ padding:18px 18px 34px; }

    .why-list{ grid-template-columns:repeat(3,1fr); }

    .portfolio-grid{ grid-template-columns:repeat(3,1fr); }
    .blog-grid{ grid-template-columns:repeat(3,1fr); }

    .kontakt-inner{ grid-template-columns:0.85fr 1.15fr; gap:70px; }
    .kontakt-form{ padding:40px; }
  }

  /* ======================================================
     DESKTOP — 1440px and up
  ====================================================== */
  @media (min-width:1440px){
    :root{ --container:1320px; }
    .section{ padding:130px 0; }
    .hero{
      padding:170px 0 110px;
      background-image:url('img/hero-bg.webp');
      background-position:center;
      background-size:cover;
    }
    .hero::before{ display:none; }
    .hero-title{ font-size:88px; }
    .hero-lead{ font-size:18px; }
    .pillar-card{ padding:52px 42px; }
    .service-card{ padding:36px 30px; }
    .service-card:hover, .brand-card:hover, .portfolio-card:hover, .blog-card:hover{ transform:translateY(-5px); }
  }
