  :root {
    --bg: #141719;
    --surface: #1E2328;
    --surface2: #252B32;
    --amber: #D4821A;
    --amber-light: #E89A35;
    --silver: #8C9BA8;
    --silver-light: #B8C4CC;
    --text: #F0F2F4;
    --text-muted: #7A8899;
    --green: #2E5D4B;
    --border: rgba(184,196,204,0.1);
    --border-amber: rgba(212,130,26,0.3);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    cursor: default;
  }

  /* â”€â”€â”€ NOISE TEXTURE OVERLAY â”€â”€â”€ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
  }

  /* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

  /* â”€â”€â”€ NAV â”€â”€â”€ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(20,23,25,0.95), transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(184,196,204,0.05);
    transition: background 0.3s;
  }

  nav.scrolled {
    background: rgba(20,23,25,0.97);
    border-bottom-color: var(--border);
  }

  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo span {
    color: var(--amber);
  }

  .nav-logo::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    background: var(--amber);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--amber); }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--amber);
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .nav-cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
  }

  /* â”€â”€â”€ HERO â”€â”€â”€ */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: 0;
  }

  /* Placeholder visual â€” replace with real photo */
  .hero-bg-img {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(212,130,26,0.06) 0%, transparent 50%),
      linear-gradient(to right, rgba(20,23,25,0.95) 40%, rgba(20,23,25,0.4) 100%),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(184,196,204,0.02) 60px,
        rgba(184,196,204,0.02) 61px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(184,196,204,0.02) 60px,
        rgba(184,196,204,0.02) 61px
      );
    z-index: 1;
  }

  /* Technical crosshair decoration */
  .hero-crosshair {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    opacity: 0.08;
    z-index: 2;
  }

  .hero-crosshair svg { width: 100%; height: 100%; }

  /* Placeholder image box */
  .hero-img-placeholder {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 600px;
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    overflow: hidden;
  }

  .hero-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(184,196,204,0.02) 20px,
      rgba(184,196,204,0.02) 21px
    );
  }

  .placeholder-icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--amber);
  }

  .hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
  }

  .hero-h1 em {
    font-style: normal;
    color: var(--amber);
  }

  .hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.6;
    max-width: 500px;
    margin: 24px 0 40px;
    letter-spacing: 0.01em;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--amber);
    padding: 16px 32px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    white-space: nowrap;
  }

  .btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver-light);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }

  .btn-secondary:hover {
    color: var(--text);
    border-bottom-color: var(--silver-light);
  }

  .hero-stats {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 40px;
    z-index: 3;
  }

  .stat {
    text-align: right;
  }

  .stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--amber);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
  }

  /* â”€â”€â”€ SECTION COMMON â”€â”€â”€ */
  section {
    padding: 100px 40px;
    position: relative;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--amber);
  }

  .section-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 58px);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--text);
  }

  .section-h2 span { color: var(--amber); }

  .container { max-width: 1200px; margin: 0 auto; }

  /* â”€â”€â”€ DIVIDER LINE â”€â”€â”€ */
  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--amber), transparent);
    opacity: 0.2;
    margin: 0;
  }

  /* â”€â”€â”€ USLUGE â”€â”€â”€ */
  #usluge { background: var(--bg); }

  .usluge-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .usluge-intro {
    max-width: 380px;
    font-size: 15px;
    color: var(--silver);
    line-height: 1.7;
    font-weight: 300;
  }

  .usluge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .usluga-card {
    background: var(--surface);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
  }

  .usluga-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--amber);
    transition: width 0.35s ease;
  }

  .usluga-card:hover { background: var(--surface2); }
  .usluga-card:hover::before { width: 100%; }

  .usluga-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--amber);
    opacity: 0.6;
    margin-bottom: 24px;
    display: block;
  }

  .usluga-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--silver-light);
  }

  .usluga-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 12px;
  }

  .usluga-desc {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.65;
    font-weight: 300;
  }

  /* â”€â”€â”€ KAKO RADIMO â”€â”€â”€ */
  #proces {
    background: var(--surface);
    overflow: hidden;
  }

  .proces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .proces-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .step:last-child { border-bottom: none; }

  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: var(--amber);
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    transition: opacity 0.2s;
  }

  .step:hover .step-num { opacity: 0.5; }



  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.6;
    font-weight: 300;
  }

  .proces-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    aspect-ratio: 1;
  }

  .proces-img {
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .proces-img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 2/1;
  }

  .proces-img:hover { border-color: var(--border-amber); }

  .proces-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 16px,
      rgba(184,196,204,0.015) 16px,
      rgba(184,196,204,0.015) 17px
    );
  }

  .img-placeholder-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  /* ─── VIDEO ─── */
  #video { background: var(--bg); }

  .video-header {
    max-width: 560px;
    margin-bottom: 40px;
  }

  .video-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .video-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9/16;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
  }

  .video-wrap iframe,
  .video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ─── FAQ ─── */
  #faq { background: var(--bg); }
  .faq-header { max-width: 560px; margin-bottom: 48px; }
  .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-item summary { list-style: none; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--amber); }
  .faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
  }
  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--amber);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .faq-icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
  .faq-icon::after  { width: 2px; height: 18px; top: 0; left: 8px; }
  .faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
  .faq-a {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    padding-bottom: 22px;
  }

  /* ─── GALERIJA ─── */
  #galerija { background: var(--bg); }

  .galerija-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 4px;
    margin-top: 50px;
  }

  .gal-item {
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: border-color 0.25s;
  }

  .gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212,130,26,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .gal-item:hover { border-color: var(--border-amber); }
  .gal-item:hover::after { opacity: 1; }

  .gal-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(184,196,204,0.02) 20px,
      rgba(184,196,204,0.02) 21px
    );
  }

  .gal-item:nth-child(1) { grid-column: 1 / 3; }
  .gal-item:nth-child(6) { grid-column: 3 / 5; }

  .gal-label {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* â”€â”€â”€ ZA KOGA â”€â”€â”€ */
  #za-koga {
    background: var(--surface);
  }

  .za-koga-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }


  .za-koga-desc {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.75;
    font-weight: 300;
    margin-top: 24px;
  }

  .za-koga-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
  }

  .koga-card {
    background: var(--surface2);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }

  .koga-card:hover { background: var(--surface2); }

  .koga-icon {
    width: 36px;
    height: 36px;
    color: var(--amber);
    margin-bottom: 16px;
    opacity: 0.8;
  }

  .koga-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 10px;
  }

  .koga-desc {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.6;
    font-weight: 300;
  }

  /* â”€â”€â”€ O NAMA â”€â”€â”€ */
  #o-nama {
    background: var(--bg);
    overflow: hidden;
  }

  .o-nama-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .o-nama-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    max-height: 560px;
  }

  .o-nama-img {
    width: 100%;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }

  .o-nama-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(184,196,204,0.015) 20px,
      rgba(184,196,204,0.015) 21px
    );
  }

  .o-nama-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--amber);
    opacity: 0.08;
    z-index: 0;
  }


  .o-nama-text {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.8;
    font-weight: 300;
    margin: 24px 0 36px;
  }

  .o-nama-text strong {
    color: var(--text);
    font-weight: 500;
  }

  .o-nama-vals {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }

  .val-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }

  .val-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    flex-shrink: 0;
    transform: rotate(45deg);
  }

  .val-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--silver-light);
  }

  /* â”€â”€â”€ KONTAKT â”€â”€â”€ */
  #kontakt {
    background: var(--surface);
    position: relative;
    overflow: hidden;
  }

  #kontakt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--amber), transparent);
  }

  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }


  .kontakt-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 24px;
  }

  .kontakt-tagline span { color: var(--amber); }

  .kontakt-desc {
    font-size: 15px;
    color: var(--silver);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .kontakt-map {
    margin-top: 24px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .kontakt-map iframe { display: block; }

  .kontakt-channels {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: gap 0.2s;
  }

  .channel:last-child { border-bottom: none; }
  .channel:hover { gap: 24px; }

  .channel-icon {
    width: 44px;
    height: 44px;
    background: rgba(212,130,26,0.12);
    border: 1px solid var(--border-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .channel:hover .channel-icon { background: rgba(212,130,26,0.22); }


  .channel-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
  }

  .channel-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--text);
    letter-spacing: 0.02em;
  }

  /* â”€â”€â”€ FORM â”€â”€â”€ */
  .forma {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .forma-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .field input,
  .field textarea,
  .field select {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    appearance: none;
  }

  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    border-color: var(--amber);
  }

  .field textarea { min-height: 120px; }

  .field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C9BA8' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  .field select option { background: var(--surface); }

  .forma-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--amber);
    padding: 18px 36px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    align-self: flex-start;
  }

  .forma-submit:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
  }

  /* â”€â”€â”€ FOOTER â”€â”€â”€ */
  footer {
    background: var(--bg);
    padding: 60px 40px 30px;
    border-top: 1px solid var(--border);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-logo span { color: var(--amber); }

  .footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    max-width: 300px;
  }

  .footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--silver);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
  }

  .footer-social:hover {
    color: var(--amber);
    border-color: var(--border-amber);
  }

  .footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
  }

  .footer-nav ul,
  .footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav a,
  .footer-contact a {
    font-size: 13px;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-nav a:hover,
  .footer-contact a:hover {
    color: var(--amber);
  }

  .footer-loc-item {
    font-size: 13px;
    color: var(--silver);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }

  .footer-credit {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }

  /* â”€â”€â”€ SCROLL REVEAL â”€â”€â”€ */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* â”€â”€â”€ FEATURED NAV LINK â”€â”€â”€ */
  .nav-link-featured {
    color: var(--amber) !important;
    border: 1px solid var(--border-amber);
    padding: 6px 16px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .nav-link-featured:hover {
    background: rgba(212,130,26,0.12);
    border-color: var(--amber);
    color: var(--amber-light) !important;
  }

  /* â”€â”€â”€ KERAMIKA HERO â”€â”€â”€ */
  .keramika-hero {
    padding: 160px 40px 80px;
    background: var(--bg);
    position: relative;
  }

  .keramika-hero-content {
    max-width: 600px;
  }

  .keramika-hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--silver-light);
    line-height: 1.6;
    margin-top: 24px;
  }

  /* â”€â”€â”€ KERAMIKA GALLERY â”€â”€â”€ */
  #keramika-galerija {
    background: var(--surface);
    padding: 100px 40px;
  }

  .keramika-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .keramika-item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .keramika-img {
    aspect-ratio: 4/3;
    background: var(--surface2);
    border: 1px solid var(--border);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s;
  }

  .keramika-img:hover {
    border-color: var(--border-amber);
  }

  .keramika-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212,130,26,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .keramika-img:hover::after {
    opacity: 1;
  }

  .keramika-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
  }

  .keramika-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(184,196,204,0.02) 20px,
      rgba(184,196,204,0.02) 21px
    );
  }

  .keramika-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    text-decoration: none;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: none;
    transition: background 0.2s, color 0.2s;
  }

  .keramika-cta:hover {
    background: rgba(212,130,26,0.12);
    color: var(--amber-light);
  }

  /* â”€â”€â”€ KERAMIKA CTA SECTION â”€â”€â”€ */
  .keramika-cta-section {
    background: var(--bg);
    padding: 100px 40px;
  }

  /* â”€â”€â”€ LIGHTBOX â”€â”€â”€ */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(20,23,25,0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .lightbox.active {
    opacity: 1;
    pointer-events: all;
  }

  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--silver-light);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    z-index: 1001;
  }

  .lightbox-close:hover {
    color: var(--amber);
  }

  .lightbox-close:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 4px;
  }

  .lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox-placeholder {
    width: 70vw;
    max-width: 800px;
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* â”€â”€â”€ MOBILE â”€â”€â”€ */
  @media (max-width: 900px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    #hero { padding: 100px 20px 60px; }
    .hero-img-placeholder { display: none; }
    .hero-stats { position: static; margin-top: 40px; justify-content: flex-start; gap: 32px; }
    .stat { text-align: left; }
    section { padding: 70px 20px; }
    .usluge-grid { grid-template-columns: 1fr; }
    .usluge-header { flex-direction: column; }
    .proces-grid { grid-template-columns: 1fr; }
    .proces-visual { display: none; }
    .galerija-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
    .gal-item:nth-child(1) { grid-column: 1 / -1; }
    .gal-item:nth-child(5) { grid-column: auto; }
    .za-koga-intro { grid-template-columns: 1fr; gap: 40px; }
    .za-koga-cards { grid-template-columns: 1fr; }
    .o-nama-grid { grid-template-columns: 1fr; }
    .o-nama-img-wrap { max-height: 300px; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .forma-row { grid-template-columns: 1fr; }
    footer { padding: 40px 20px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
    .hero-stats { flex-wrap: wrap; }
    .keramika-hero { padding: 120px 20px 60px; }
    .keramika-grid { grid-template-columns: 1fr; gap: 20px; }
    #keramika-galerija { padding: 70px 20px; }
    .keramika-cta-section { padding: 70px 20px; }
    .lightbox-placeholder { width: 90vw; }
  }
