﻿/* ═══════════════════════════════════════════
       CSS VARIJABLE & RESET
    ═══════════════════════════════════════════ */
    :root {
      --sand:     #f5f0e8;
      --cream:    #faf8f4;
      --warm:     #e8e0d0;
      --stone:    #b8a898;
      --terra:    #c4704a;
      --terra-dk: #9e5535;
      --ocean:    #2a5f7a;
      --ocean-lt: #3d7a9a;
      --ink:      #1a1a1a;
      --ink-soft: #3a3530;
      --white:    #ffffff;
      --gold:     #c9a86c;
      --gold-lt:  #e2c99a;

      --font-display: 'Cormorant Garamond', serif;
      --font-body:    'Outfit', sans-serif;

      --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
      --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

      --nav-h: 72px;
      --section-pad: clamp(80px, 10vw, 140px);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      cursor: none;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; cursor: none; }
    button { border: none; background: none; cursor: none; font-family: inherit; }
    ul { list-style: none; }

    /* ═══════════════════════════════════════════
       CUSTOM CURSOR
    ═══════════════════════════════════════════ */
    .cursor-dot,
    .cursor-ring {
      position: fixed;
      top: 0; left: 0;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999999;
      opacity: 0;
      transform: translate(-100vw,-100vh);
      transition: opacity .3s;
    }
    .cursor-dot {
      width: 8px; height: 8px;
      background: var(--terra);
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--terra);
      transition: transform .15s var(--ease-expo), opacity .3s, width .3s var(--ease-back), height .3s var(--ease-back);
    }
    .cursor-ring.hover {
      width: 56px; height: 56px;
      background: rgba(196,112,74,.08);
    }
    @media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

    /* ═══════════════════════════════════════════
       LANGUAGE TOGGLE
    ═══════════════════════════════════════════ */
    [data-lang="hr"] .en { display: none !important; }
    [data-lang="en"] .hr { display: none !important; }

    /* ═══════════════════════════════════════════
       SCROLLBAR
    ═══════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--sand); }
    ::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 10px; }

    /* ═══════════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════════ */
    .container {
      width: min(1240px, 92vw);
      margin-inline: auto;
    }
    .section-label {
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--terra);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }
    .section-label::before {
      content: '';
      width: 36px; height: 1px;
      background: var(--terra);
      flex-shrink: 0;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--ink);
    }
    .section-title em {
      font-style: italic;
      color: var(--terra);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      font-family: var(--font-body);
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: all .35s var(--ease-expo);
      cursor: none;
    }
    .btn-primary {
      background: var(--terra);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--terra-dk);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(196,112,74,.35);
    }
    .btn-outline {
      border: 1.5px solid var(--terra);
      color: var(--terra);
    }
    .btn-outline:hover {
      background: var(--terra);
      color: var(--white);
      transform: translateY(-2px);
    }
    .btn-white {
      background: var(--white);
      color: var(--terra);
    }
    .btn-white:hover {
      background: var(--cream);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(0,0,0,.15);
    }

    /* ═══════════════════════════════════════════
       REVEAL ON SCROLL
    ═══════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
    }
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
    }
    .reveal-left.active { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
    }
    .reveal-right.active { opacity: 1; transform: translateX(0); }
    .reveal-scale {
      opacity: 0;
      transform: scale(.92);
      transition: opacity .9s var(--ease-expo), transform .9s var(--ease-expo);
    }
    .reveal-scale.active { opacity: 1; transform: scale(1); }

    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .22s; }
    .delay-3 { transition-delay: .34s; }
    .delay-4 { transition-delay: .46s; }
    .delay-5 { transition-delay: .58s; }

    /* ═══════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 1000;
      display: flex;
      align-items: center;
      transition: background .5s, box-shadow .5s, padding .3s;
      padding: 0 clamp(20px, 4vw, 60px);
    }
    #nav.scrolled {
      background: rgba(22,20,18,.93);
      backdrop-filter: blur(16px);
      box-shadow: 0 2px 30px rgba(0,0,0,.25);
    }
    .nav-inner {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.55rem;
      font-weight: 300;
      letter-spacing: .05em;
      color: var(--white);
      transition: color .4s;
    }
    #nav.scrolled .nav-logo { color: var(--white); }
    .nav-logo span { color: var(--terra); font-style: italic; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .nav-links a {
      font-size: .8rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
      position: relative;
      transition: color .3s;
    }
    #nav.scrolled .nav-links a { color: rgba(255,255,255,.75); }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--terra);
      transition: width .35s var(--ease-expo);
    }
    .nav-links a:hover { color: var(--terra); }
    .nav-links a:hover::after { width: 100%; }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .lang-btn {
      padding: 5px 10px;
      border-radius: 2px;
      color: rgba(255,255,255,.7);
      transition: all .3s;
      cursor: none;
    }
    #nav.scrolled .lang-btn { color: var(--stone); }
    .lang-btn.active {
      background: var(--terra);
      color: var(--white) !important;
    }
    .lang-btn:hover:not(.active) { color: var(--terra) !important; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 28px;
      cursor: none;
    }
    .nav-hamburger span {
      display: block;
      height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: all .4s var(--ease-expo);
    }
    #nav.scrolled .nav-hamburger span { background: var(--ink); }

    /* Mobile menu */
    .nav-mobile {
      position: fixed;
      top: 0; right: 0;
      width: min(340px, 100vw);
      height: 100vh;
      background: var(--cream);
      z-index: 999;
      transform: translateX(100%);
      transition: transform .6s var(--ease-expo);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 48px;
      box-shadow: -20px 0 60px rgba(0,0,0,.15);
    }
    .nav-mobile.open { transform: translateX(0); }
    .nav-mobile a {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      color: var(--ink);
      padding: 10px 0;
      border-bottom: 1px solid var(--warm);
      transition: color .3s, padding-left .3s;
    }
    .nav-mobile a:hover { color: var(--terra); padding-left: 10px; }
    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,26,26,.5);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s;
    }
    .nav-overlay.open { opacity: 1; pointer-events: all; }

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(10px); }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

    /* ═══════════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════════ */
    #hero {
      position: relative;
      height: 100svh;
      min-height: 620px;
      overflow: hidden;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.6s ease;
      pointer-events: none;
    }
    .hero-slide.active { opacity: 1; pointer-events: auto; }
    .hero-slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.08);
      transition: transform 8s ease;
    }
    .hero-slide.active .hero-slide-bg { transform: scale(1); }

    /* PLACEHOLDER GRADIENTS — zamijeni sa background-image: url('tvoja-slika.webp') */
    .hero-slide:nth-child(1) .hero-slide-bg {
      background-image: url('images/hero-1.webp');
       background-size: cover;
    }
    .hero-slide:nth-child(2) .hero-slide-bg {
      background-image: url('images/hero-2.webp');
       background-size: cover;
    }
    .hero-slide:nth-child(3) .hero-slide-bg {
      background-image: url('images/hero-3.webp');
       background-size: cover;
    }
    .hero-slide:nth-child(4) .hero-slide-bg {
      background-image: url('images/hero-4.webp');
       background-size: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.3) 50%,
        rgba(0,0,0,.6) 100%
      );
    }
    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding-bottom: clamp(60px, 10vh, 120px);
    }
    .hero-text {
      color: var(--white);
      max-width: 780px;
    }
    .hero-tag {
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-tag::before {
      content: '';
      width: 36px; height: 1px;
      background: var(--gold-lt);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 7rem);
      font-weight: 300;
      line-height: 1.0;
      margin-bottom: 24px;
      letter-spacing: -.01em;
    }
    .hero-title em { font-style: italic; color: var(--gold-lt); }
    .hero-desc {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,.82);
      max-width: 520px;
      margin-bottom: 40px;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

    /* Slide indicators */
    .hero-indicators {
      position: absolute;
      bottom: clamp(28px, 5vh, 48px);
      right: clamp(20px, 4vw, 60px);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      cursor: none;
      transition: all .4s var(--ease-back);
    }
    .hero-dot.active {
      background: var(--gold-lt);
      transform: scale(1.5);
    }

    /* Progress bar */
    .hero-progress {
      position: absolute;
      bottom: 0; left: 0;
      height: 3px;
      background: var(--terra);
      width: 0%;
      transition: width linear;
    }

    /* Scroll cue */
    .scroll-cue {
      position: absolute;
      bottom: clamp(28px, 5vh, 48px);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.6);
      font-size: .7rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      animation: cue-bounce 2s ease-in-out infinite;
    }
    .scroll-cue-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
    }
    @keyframes cue-bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ═══════════════════════════════════════════
       INTRO / STATS STRIP
    ═══════════════════════════════════════════ */
    #intro {
      padding: var(--section-pad) 0;
      background: var(--cream);
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .intro-text .section-title { margin-bottom: 24px; }
    .intro-text p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--ink-soft);
      margin-bottom: 16px;
    }
    .intro-text p:last-of-type { margin-bottom: 36px; }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-left: 1px solid var(--warm);
    }
    .stat-item {
      padding: 36px 32px;
      border-right: 1px solid var(--warm);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 300;
      color: var(--terra);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--stone);
    }
    .intro-image {
      position: relative;
    }
    .intro-image-main {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 2px;

      /* PLACEHOLDER */
      background: linear-gradient(135deg, var(--ocean) 0%, var(--terra) 100%);
    }
    .intro-image-badge {
      position: absolute;
      bottom: -24px; left: -24px;
      background: var(--terra);
      color: var(--white);
      padding: 24px 28px;
      border-radius: 2px;
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-style: italic;
      max-width: 200px;
      line-height: 1.4;
      box-shadow: 0 16px 48px rgba(196,112,74,.35);
    }

    @media (max-width: 900px) {
      .intro-grid { grid-template-columns: 1fr; gap: 50px; }
      .stats-row { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .stats-row { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════
       SECTION DIVIDER (WAVE)
    ═══════════════════════════════════════════ */
    .divider-wave {
      position: relative;
      height: 80px;
      overflow: hidden;
    }
    .divider-wave svg {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 100%;
    }
    .divider-wave-dark {
      position: relative;
      height: 80px;
      overflow: hidden;
      background: var(--ocean);
    }
    .divider-wave-dark svg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }

    /* ═══════════════════════════════════════════
       DESTINACIJE / BLOG CARDS
    ═══════════════════════════════════════════ */
    #destinacije {
      padding: var(--section-pad) 0;
      background: var(--sand);
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .card {
      background: var(--cream);
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.06);
      transition: transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo);
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,.12);
    }
    .card-image-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease-expo);

      /* PLACEHOLDER */
      background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-lt) 100%);
    }
    .card:hover .card-image { transform: scale(1.06); }
    .card-category {
      position: absolute;
      top: 16px; left: 16px;
      background: var(--terra);
      color: var(--white);
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 2px;
    }
    .card-body { padding: 28px; }
    .card-meta {
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 10px;
      display: flex;
      gap: 12px;
    }
    .card-title {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 12px;
      color: var(--ink);
      transition: color .3s;
    }
    .card:hover .card-title { color: var(--terra); }
    .card-excerpt {
      font-size: .9rem;
      line-height: 1.7;
      color: var(--stone);
      margin-bottom: 20px;
    }
    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--terra);
      transition: gap .3s;
    }
    .card-link:hover { gap: 14px; }
    .card-link i { font-size: .7rem; }

    /* Featured big card */
    #destinacije .card-featured {
      grid-column: 1 / 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    #destinacije .card-featured .card-image-wrap { aspect-ratio: auto; height: 100%; }
    #destinacije .card-featured .card-body {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    #destinacije .card-featured .card-title { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }

    @media (max-width: 1024px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      #destinacije .card-featured { grid-column: 1 / 3; }
    }
    @media (max-width: 680px) {
      .cards-grid { grid-template-columns: 1fr; }
      #destinacije .card-featured { grid-column: auto; grid-template-columns: 1fr; }
      #destinacije .card-featured .card-image-wrap { aspect-ratio: 4/3; height: auto; }
    }

    /* ═══════════════════════════════════════════
       RESTORANI SWIPER SECTION (Parallax overlap)
    ═══════════════════════════════════════════ */
    #restorani {
      padding: clamp(50px, 7vw, 100px) 0 clamp(40px, 5vw, 80px);
      background: var(--ocean);
      position: relative;
      overflow: hidden;
    }
    #restorani::before {
      content: '';
      position: absolute;
      top: -1px; left: 0; right: 0;
      height: 120px;
      background: var(--sand);
      clip-path: ellipse(55% 100% at 50% 0%);
    }
    .restorani-header {
      text-align: center;
      padding-top: 24px;
      margin-bottom: 28px;
    }
    .restorani-header .section-label { justify-content: center; }
    .restorani-header .section-label::before { display: none; }
    .restorani-header .section-label::after {
      content: '';
      width: 36px; height: 1px;
      background: var(--terra);
      flex-shrink: 0;
    }
    .restorani-header .section-title { color: var(--white); }
    .restorani-header .section-title em { color: var(--gold-lt); }
    .restorani-header p {
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 560px;
      margin: 18px auto 0;
    }

    /* Swiper restaurant cards */
    .swiper-restorani {
      padding: 10px 0 28px;
      overflow: visible !important;
    }
    .swiper-restorani .swiper-wrapper { align-items: stretch; }
    .swiper-restorani .swiper-slide {
      height: auto;
      width: 430px;
    }

    .resto-card {
      background: var(--cream);
      border-radius: 4px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      box-shadow: 0 8px 40px rgba(0,0,0,.2);
      transition: transform .5s var(--ease-expo), box-shadow .5s;
    }
    .resto-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 64px rgba(0,0,0,.3);
    }
    .resto-card-img {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .resto-card-img .card-image {
      background: linear-gradient(135deg, var(--terra-dk) 0%, var(--terra) 100%);
    }
    .resto-card-img a {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      transition: background .4s;
      color: var(--white);
      font-size: 1.8rem;
    }
    .resto-card:hover .resto-card-img a { background: rgba(0,0,0,.35); }
    .resto-card:hover .card-img-overlay-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .resto-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
    .resto-stars {
      color: var(--gold);
      font-size: .85rem;
      margin-bottom: 10px;
    }
    .resto-card-body .card-title { margin-bottom: 8px; }
    .resto-card-body .card-excerpt { flex: 1; }
    .resto-info {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--warm);
      font-size: .8rem;
      color: var(--stone);
    }
    .resto-info span { display: flex; align-items: center; gap: 6px; }
    .resto-info i { color: var(--terra); }

    .swiper-nav-custom {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 8px;
    }
    .swiper-btn-custom {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,.3);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      cursor: none;
    }
    .swiper-btn-custom:hover {
      background: var(--terra);
      border-color: var(--terra);
    }

    /* ═══════════════════════════════════════════
       PARALLAX IMAGE TEXT SECTION
    ═══════════════════════════════════════════ */
    #parallax-split {
      position: relative;
      overflow: hidden;
      height: clamp(480px, 70vh, 720px);
      display: flex;
      align-items: center;
    }
    .parallax-bg {
      position: absolute;
      inset: -20%;
      background: linear-gradient(135deg, #2a5f7a 0%, #1a3a4a 100%);
      background-image: url('images/vodic-turizam.webp');
      background-size: cover;
      background-position: center;
      /* PLACEHOLDER — zamijeni sa: background-image: url('tvoja-slika.webp'); */
      will-change: transform;
    }
    .parallax-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 70%);
    }
    .parallax-content {
      position: relative;
      z-index: 2;
      color: var(--white);
      max-width: 600px;
    }
    .parallax-content .section-label { color: var(--gold-lt); }
    .parallax-content .section-label::before { background: var(--gold-lt); }
    .parallax-content .section-title { color: var(--white); margin-bottom: 24px; }
    .parallax-content .section-title em { color: var(--gold-lt); }
    .parallax-content p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(255,255,255,.8);
      margin-bottom: 36px;
    }

    /* ═══════════════════════════════════════════
       GASTRO / FOTO GALERIJA (Lightbox)
    ═══════════════════════════════════════════ */
    #galerija {
      padding: var(--section-pad) 0;
      background: var(--cream);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 12px;
      margin-top: 60px;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: none;
    }
    .gallery-item:nth-child(1) { grid-column: 1/3; grid-row: 1/3; aspect-ratio: auto; }
    .gallery-panoramic { grid-column: 3/5; grid-row: 2/3; aspect-ratio: 2/1; }
    .gallery-item img,
    .gallery-item .gallery-ph {
      width: 100%;
      height: 100%;
      min-height: 200px;
      object-fit: cover;
      display: block;
      transition: transform .8s var(--ease-expo);
    }
    /* PLACEHOLDER colors per item */
    .gallery-item:nth-child(1) .gallery-ph { background: linear-gradient(135deg, #3d7a9a, #c4704a); min-height: 400px; }
    .gallery-item:nth-child(2) .gallery-ph { background: linear-gradient(135deg, #c9a86c, #9e5535); }
    .gallery-item:nth-child(3) .gallery-ph { background: linear-gradient(135deg, #2a5f7a, #1a3a4a); }
    .gallery-item:nth-child(4) .gallery-ph { background: linear-gradient(135deg, #c4704a, #c9a86c); }
    .gallery-item:nth-child(5) .gallery-ph { background: linear-gradient(135deg, #1a3a4a, #3d7a9a); }
    .gallery-item:nth-child(6) .gallery-ph { background: linear-gradient(135deg, #9e5535, #c4704a); }
    .gallery-item:nth-child(7) .gallery-ph { background: linear-gradient(135deg, #4a7a3a, #c9a86c); }
    .gallery-item:nth-child(8) .gallery-ph { background: linear-gradient(135deg, #2a5f7a, #c9a86c); }
    .gallery-item:nth-child(9) .gallery-ph { background: linear-gradient(135deg, #c4704a, #2a5f7a); }
    .gallery-item:nth-child(10) .gallery-ph { background: linear-gradient(135deg, #4a7a3a, #9e5535); }
    .gallery-item:nth-child(11) .gallery-ph { background: linear-gradient(135deg, #c9a86c, #2a5f7a); }

    .gallery-item:hover img,
    .gallery-item:hover .gallery-ph { transform: scale(1.07); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.45);
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .4s;
      color: var(--white);
      font-size: 2rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }

    @media (max-width: 900px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:nth-child(1) { grid-column: auto; grid-row: auto; }
      .gallery-panoramic { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; }
      .gallery-item:nth-child(5) { grid-column: auto; }
    }
    @media (max-width: 540px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
      .gallery-item img,
      .gallery-item .gallery-ph { min-height: 140px; }
    }

    /* ═══════════════════════════════════════════
       SMJEŠTAJ SECTION
    ═══════════════════════════════════════════ */
    #smjestaj {
      padding: var(--section-pad) 0;
      background: var(--sand);
    }
    .smjestaj-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 60px;
    }
    .smjestaj-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 3/2;
      cursor: none;
    }
    .smjestaj-card .bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .8s var(--ease-expo);
    }
    /* PLACEHOLDER */
    .smjestaj-card:nth-child(1) .bg { background-image: url('images/smjestaj-1.webp'); }
    .smjestaj-card:nth-child(2) .bg { background-image: url('images/smjestaj-2.webp'); }
    .smjestaj-card:nth-child(3) .bg { background-image: url('images/smjestaj-3.webp'); }
    .smjestaj-card:nth-child(4) .bg { background-image: url('images/smjestaj-4.webp'); }

    .smjestaj-card:hover .bg { transform: scale(1.05); }
    .smjestaj-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%);
    }
    .smjestaj-card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 32px;
      color: var(--white);
      transform: translateY(8px);
      transition: transform .5s var(--ease-expo);
    }
    .smjestaj-card:hover .smjestaj-card-body { transform: translateY(0); }
    .smjestaj-card-tag {
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 8px;
    }
    .smjestaj-card-title {
      font-family: var(--font-display);
      font-size: 1.7rem;
      font-weight: 300;
      margin-bottom: 8px;
    }
    .smjestaj-card-desc {
      font-size: .88rem;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s var(--ease-expo);
    }
    .smjestaj-card:hover .smjestaj-card-desc { max-height: 80px; }
    .smjestaj-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--white);
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .4s .1s, transform .4s .1s;
    }
    .smjestaj-card:hover .smjestaj-card-link { opacity: 1; transform: translateY(0); }

    @media (max-width: 680px) {
      .smjestaj-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════
       BLOG / ČLANCI
    ═══════════════════════════════════════════ */
    #blog {
      padding: var(--section-pad) 0;
      background: var(--cream);
    }
    .blog-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 60px;
    }
    .blog-row {
      display: grid;
      grid-template-columns: 260px 1fr auto;
      align-items: center;
      gap: 40px;
      padding: 36px 0;
      border-bottom: 1px solid var(--warm);
      transition: background .3s;
    }
    .blog-row:first-child { border-top: 1px solid var(--warm); }
    .blog-row:hover { background: var(--sand); padding-left: 20px; padding-right: 20px; margin-left: -20px; margin-right: -20px; border-radius: 2px; }
    .blog-img {
      aspect-ratio: 16/10;
      overflow: hidden;
      border-radius: 2px;
    }
    .blog-img .gallery-ph {
      width: 100%; height: 100%; min-height: unset;
      transition: transform .6s var(--ease-expo);
    }
    .blog-row:hover .blog-img .gallery-ph { transform: scale(1.06); }
    .blog-img .gallery-ph:nth-child(1) { background: linear-gradient(135deg, var(--ocean), var(--ocean-lt)); }

    .blog-num {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 300;
      color: var(--warm);
      line-height: 1;
      flex-shrink: 0;
      transition: color .3s;
    }
    .blog-row:hover .blog-num { color: var(--terra); }
    .blog-info .card-meta { margin-bottom: 10px; }
    .blog-info .card-title { margin-bottom: 8px; }
    .blog-info .card-excerpt { margin-bottom: 0; }

    @media (max-width: 860px) {
      .blog-row { grid-template-columns: 1fr; }
      .blog-num { display: none; }
    }

    /* ═══════════════════════════════════════════
       O MENI SECTION
    ═══════════════════════════════════════════ */
    #about {
      padding: var(--section-pad) 0;
      background: var(--ink);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,112,74,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-images {
      position: relative;
    }
    .about-img-main {
      width: 80%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: 2px;

      /* PLACEHOLDER */
      background: linear-gradient(135deg, #3d4a5a, #5a6a7a);
    }
    .about-img-secondary {
      position: absolute;
      bottom: -40px; right: 0;
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 2px;
      border: 6px solid var(--ink);

      /* PLACEHOLDER */
      background: linear-gradient(135deg, var(--terra-dk), var(--terra));
    }
    .about-img-accent {
      position: absolute;
      top: 40px; right: -20px;
      background: var(--terra);
      color: var(--white);
      width: 90px; height: 90px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: .95rem;
      font-style: italic;
      text-align: center;
      line-height: 1.3;
      font-weight: 400;
    }

    .about-content .section-label { color: var(--gold-lt); }
    .about-content .section-label::before { background: var(--gold-lt); }
    .about-content .section-title { color: var(--white); margin-bottom: 28px; }
    .about-content .section-title em { color: var(--gold-lt); }
    .about-content p {
      color: rgba(255,255,255,.75);
      font-size: 1rem;
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .skills-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 28px 0 36px;
    }
    .skill-tag {
      padding: 7px 16px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 2px;
      font-size: .78rem;
      letter-spacing: .1em;
      color: rgba(255,255,255,.7);
      transition: all .3s;
    }
    .skill-tag:hover {
      background: var(--terra);
      border-color: var(--terra);
      color: var(--white);
    }

    .about-cta {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 2px;
      padding: 28px 32px;
      margin-top: 20px;
    }
    .about-cta p {
      font-size: .95rem;
      color: rgba(255,255,255,.7);
      margin-bottom: 16px;
    }

    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 60px; }
      .about-images { padding-bottom: 60px; }
    }

    /* ═══════════════════════════════════════════
       KONTAKT SECTION
    ═══════════════════════════════════════════ */
    #kontakt {
      padding: calc(var(--section-pad) * 1.3) 0 calc(var(--section-pad) * 1.5);
      background: var(--sand);
      position: relative;
      border-top: 1px solid var(--warm);
    }
    #kontakt::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 72px;
      height: 3px;
      background: var(--terra);
    }
    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 100px;
      align-items: center;
    }
    .kontakt-info .section-title { margin-bottom: 20px; }
    .kontakt-info p {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--ink-soft);
      margin-bottom: 48px;
      max-width: 420px;
    }
    .kontakt-details { display: flex; flex-direction: column; gap: 0; }
    .kontakt-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 18px 0;
      border-bottom: 1px solid var(--warm);
    }
    .kontakt-item:last-child { border-bottom: none; }
    .kontakt-icon {
      width: 52px; height: 52px;
      background: var(--terra);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      transition: transform .3s var(--ease-back), background .3s;
    }
    .kontakt-item:hover .kontakt-icon {
      transform: scale(1.08);
      background: var(--terra-dk, #a0512a);
    }
    .kontakt-item-text strong {
      display: block;
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 4px;
    }
    .kontakt-item-text a, .kontakt-item-text span {
      font-size: 1rem;
      color: var(--ink);
      transition: color .3s;
    }
    .kontakt-item-text a:hover { color: var(--terra); }

    /* Form */
    .contact-form {
      background: var(--cream);
      padding: 56px 52px;
      border-radius: 6px;
      box-shadow: 0 20px 72px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.05);
      border: 1px solid rgba(0,0,0,.06);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .form-group {
      position: relative;
      margin-bottom: 28px;
    }
    .form-group label {
      position: absolute;
      top: 17px; left: 18px;
      font-size: .84rem;
      color: var(--stone);
      transition: all .25s;
      pointer-events: none;
      background: transparent;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 26px 18px 10px;
      border: 1.5px solid var(--warm);
      border-radius: 4px;
      font-family: var(--font-body);
      font-size: .97rem;
      color: var(--ink);
      background: transparent;
      transition: border-color .3s, box-shadow .3s;
      outline: none;
      resize: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--terra);
      box-shadow: 0 0 0 3px rgba(196,112,74,.12);
    }
    .form-group input:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:focus ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label {
      top: 7px;
      font-size: .7rem;
      color: var(--terra);
      letter-spacing: .04em;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: transparent; }
    .form-group textarea { height: 148px; }

    .form-submit-wrap {
      text-align: right;
      margin-top: 16px;
      padding-top: 8px;
      border-top: 1px solid var(--warm);
    }
    .form-submit-wrap .btn {
      padding: 16px 40px;
      font-size: .88rem;
      letter-spacing: .1em;
    }
    #form-status {
      display: none;
      padding: 14px 20px;
      border-radius: 2px;
      font-size: .9rem;
      margin-top: 16px;
    }
    #form-status.success {
      display: block;
      background: rgba(74, 150, 74, .1);
      border: 1px solid rgba(74, 150, 74, .3);
      color: #2a7a2a;
    }
    #form-status.error {
      display: block;
      background: rgba(196, 112, 74, .1);
      border: 1px solid rgba(196, 112, 74, .3);
      color: var(--terra-dk);
    }
    .form-fallback {
      margin-top: 20px;
      font-size: .82rem;
      color: rgba(255,255,255,.4);
      line-height: 1.6;
    }
    .form-fallback a {
      color: var(--gold);
      text-decoration: none;
    }
    .form-fallback a:hover { text-decoration: underline; }

    @media (max-width: 900px) {
      .kontakt-grid { grid-template-columns: 1fr; gap: 50px; }
      .contact-form { padding: 32px 24px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════════════════
       NEWSLETTER / CTA BAR
    ═══════════════════════════════════════════ */
    #newsletter {
      background: var(--terra);
      padding: 70px 0;
    }
    .newsletter-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .newsletter-text h3 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 8px;
    }
    .newsletter-text p {
      color: rgba(255,255,255,.8);
      font-size: 1rem;
    }
    .newsletter-form {
      display: flex;
      gap: 0;
      flex-shrink: 0;
      flex-wrap: wrap;
      gap: 12px;
    }
    .newsletter-form input {
      padding: 14px 24px;
      border: none;
      border-radius: 2px;
      font-family: var(--font-body);
      font-size: .95rem;
      width: 280px;
      background: rgba(255,255,255,.15);
      color: var(--white);
      outline: none;
      transition: background .3s;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
    .newsletter-form input:focus { background: rgba(255,255,255,.25); }
    .newsletter-form button {
      background: var(--ink);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 2px;
      font-family: var(--font-body);
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: none;
      transition: background .3s;
    }
    .newsletter-form button:hover { background: var(--ink-soft); }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.65);
      padding: 80px 0 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand .nav-logo { color: var(--white); font-size: 1.7rem; display: block; margin-bottom: 16px; }
    .footer-brand p { font-size: .9rem; line-height: 1.75; max-width: 280px; }
    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }
    .footer-social a {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.6);
      transition: all .3s;
      font-size: .9rem;
    }
    .footer-social a:hover { background: var(--terra); border-color: var(--terra); color: var(--white); }
    .footer-col h4 {
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: .88rem;
      color: rgba(255,255,255,.55);
      transition: color .3s, padding-left .3s;
      display: block;
    }
    .footer-col a:hover { color: var(--terra); padding-left: 6px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .8rem;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-bottom a { color: rgba(255,255,255,.55); transition: color .3s; }
    .footer-bottom a:hover { color: var(--terra); }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-brand { grid-column: 1/3; }
    }
    @media (max-width: 540px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
    }

    /* ═══════════════════════════════════════════
       BACK TO TOP
    ═══════════════════════════════════════════ */
    #back-to-top {
      position: fixed;
      bottom: 40px; right: 40px;
      width: 52px; height: 52px;
      background: var(--terra);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: 0 8px 28px rgba(196,112,74,.4);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .4s, transform .4s var(--ease-back);
      z-index: 9999998;
      cursor: none;
    }
    #back-to-top.visible { opacity: 1; transform: translateY(0); }
    #back-to-top:hover { background: var(--terra-dk); transform: translateY(-4px); }

    /* ═══════════════════════════════════════════
       LOADING SCREEN
    ═══════════════════════════════════════════ */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 24px;
      transition: opacity .8s, visibility .8s;
    }
    #loader.done { opacity: 0; visibility: hidden; }
    .loader-logo {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--white);
    }
    .loader-logo span { color: var(--terra); font-style: italic; }
    .loader-bar-wrap {
      width: 200px; height: 1px;
      background: rgba(255,255,255,.15);
    }
    .loader-bar {
      height: 100%;
      background: var(--terra);
      width: 0%;
      transition: width .05s linear;
    }

    /* ═══════════════════════════════════════════
       COOKIE BANNER
    ═══════════════════════════════════════════ */
    #cookie-banner {
      position: fixed;
      bottom: 24px; left: 24px;
      right: 24px;
      max-width: 520px;
      background: var(--ink);
      color: rgba(255,255,255,.82);
      padding: 24px 28px;
      border-radius: 4px;
      box-shadow: 0 16px 56px rgba(0,0,0,.35);
      z-index: 1001;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transform: translateY(20px);
      opacity: 0;
      transition: transform .5s var(--ease-back), opacity .5s;
    }
    #cookie-banner.show { transform: translateY(0); opacity: 1; }
    #cookie-banner.hide { transform: translateY(100px); opacity: 0; pointer-events: none; }
    #cookie-banner p { font-size: .85rem; line-height: 1.65; }
    #cookie-banner p a { color: var(--terra); text-decoration: underline; }
    .cookie-btns { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
    .cookie-accept {
      background: var(--terra);
      color: var(--white);
      padding: 8px 18px;
      border-radius: 2px;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .08em;
      cursor: none;
      transition: background .3s;
    }
    .cookie-accept:hover { background: var(--terra-dk); }
    .cookie-decline {
      color: rgba(255,255,255,.5);
      font-size: .8rem;
      padding: 8px 12px;
      cursor: none;
      transition: color .3s;
    }
    .cookie-decline:hover { color: var(--white); }

    /* ═══════════════════════════════════════════
       RESPONSIVE TWEAKS
    ═══════════════════════════════════════════ */
    @media (max-width: 768px) {
      #back-to-top { bottom: 24px; right: 20px; width: 44px; height: 44px; }
      .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
    }
/* ═══════════════════════════════════════════
   PAGE HERO — podstranice (bez slidera)
═══════════════════════════════════════════ */
#page-hero {
  position: relative;
  height: clamp(380px, 55vh, 580px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.65) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(40px, 7vh, 80px);
}
.page-hero-content .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-hero-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-hero-tag::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold-lt);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.page-hero-title em { font-style: italic; color: var(--gold-lt); }
.page-hero-desc {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 520px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,.5); transition: color .3s; }
.page-breadcrumb a:hover { color: var(--gold-lt); }
.page-breadcrumb span { color: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════ */
.search-section {
  background: var(--cream);
  padding: 48px 0 0;
}
.search-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 40px;
}
.search-wrap i.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone);
  font-size: 1rem;
  pointer-events: none;
}
#search-input {
  width: 100%;
  padding: 18px 52px 18px 52px;
  border: 1.5px solid var(--warm);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
#search-input:focus {
  border-color: var(--terra);
  box-shadow: 0 4px 24px rgba(196,112,74,.15);
}
#search-input::placeholder { color: var(--stone); }
#search-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone);
  font-size: .85rem;
  cursor: none;
  transition: color .3s;
  padding: 4px 8px;
}
#search-clear:hover { color: var(--terra); }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--warm);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: none;
  transition: all .3s var(--ease-expo);
  background: transparent;
}
.filter-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

/* No results */
#no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--stone);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   SMJEŠTAJ PAGE — Grid s karticama
═══════════════════════════════════════════ */
.smjestaj-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: var(--section-pad);
}
.smjestaj-page-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .5s var(--ease-expo), box-shadow .5s;
}
.smjestaj-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,.13);
}
.smjestaj-page-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.smjestaj-page-card-img > a {
  display: block;
  position: absolute;
  inset: 0;
}
.smjestaj-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-expo);
  background: linear-gradient(135deg, var(--ocean), var(--ocean-lt));
}
.smjestaj-page-card:hover .smjestaj-page-card-img img { transform: scale(1.06); }
.smjestaj-page-card:hover .card-img-overlay-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.smjestaj-page-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(28,26,24,.75);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  z-index: 2;
}
.smjestaj-page-card-body { padding: 28px; }
.smjestaj-page-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  transition: color .3s;
}
.smjestaj-page-card:hover .smjestaj-page-card-title { color: var(--terra); }
.smjestaj-page-card-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 20px;
}
.smjestaj-page-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--warm);
  font-size: .8rem;
  color: var(--stone);
}
.smjestaj-page-card-meta span { display: flex; align-items: center; gap: 6px; }
.smjestaj-page-card-meta i { color: var(--terra); }
.smjestaj-page-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  transition: gap .3s;
}
.smjestaj-page-card-link:hover { gap: 14px; }

@media (max-width: 1024px) { .smjestaj-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .smjestaj-cards-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   GASTRO PAGE — Masonry-style grid
═══════════════════════════════════════════ */
.gastro-intro {
  padding: var(--section-pad) 0 60px;
  background: var(--cream);
}
.gastro-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gastro-intro-grid .section-title { margin-bottom: 20px; }
.gastro-intro-grid p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.gastro-intro-img {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}
.gastro-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--terra-dk), var(--gold));
}
@media (max-width: 900px) {
  .gastro-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

.gastro-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: var(--section-pad);
}
@media (max-width: 1024px) { .gastro-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gastro-cards-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   RESTORANI PAGE — Full grid
═══════════════════════════════════════════ */
.restorani-page-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
}
.restorani-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .restorani-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .restorani-page-grid { grid-template-columns: 1fr; } }

.resto-page-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .5s var(--ease-expo), box-shadow .5s;
  display: flex;
  flex-direction: column;
}
.resto-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,.13);
}
.resto-page-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.resto-page-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-expo);
  background: linear-gradient(135deg, var(--terra-dk), var(--terra));
}
.resto-page-card:hover .resto-page-card-img img { transform: scale(1.06); }
.resto-page-card-img a.glightbox {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: background .4s;
  color: var(--white);
  font-size: 1.8rem;
}
.resto-page-card:hover .resto-page-card-img a.glightbox { background: rgba(0,0,0,.35); }
.resto-page-card:hover .card-img-overlay-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.resto-page-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.resto-page-card-body .card-excerpt { flex: 1; }

/* ═══════════════════════════════════════════
   INTRO SECTION — podstranice
═══════════════════════════════════════════ */
.page-intro {
  padding: 60px 0 40px;
  background: var(--cream);
  text-align: center;
}
.page-intro .section-title { margin-bottom: 16px; }
.page-intro p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ═══════════════════════════════════════════
   DIVIDER WAVE
═══════════════════════════════════════════ */
.divider-wave { line-height: 0; overflow: hidden; }
.divider-wave svg { display: block; }

/* ═══════════════════════════════════════════
   ARTICLE MODAL
═══════════════════════════════════════════ */
#article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}
#article-modal.open { display: block; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(820px, 100vw);
  height: 100vh;
  background: var(--cream);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(0.19,1,0.22,1);
  box-shadow: -20px 0 80px rgba(0,0,0,.25);
}
.modal-panel.visible { transform: translateX(0); }
.modal-close {
  position: sticky;
  top: 20px; right: 20px;
  float: right;
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: none;
  transition: background .3s;
  z-index: 10;
  margin: 20px 20px 0 0;
}
.modal-close:hover { background: var(--terra); }
.modal-body { padding: 0 0 60px; }
.modal-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 0;
}
.modal-gimg-main { grid-column: 1/3; aspect-ratio: 16/9; }
.modal-gimg-sm { aspect-ratio: 4/3; }
.modal-gimg {
  display: block;
  overflow: hidden;
  position: relative;
}
.modal-gimg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-expo);
  display: block;
}
.modal-gimg:hover img { transform: scale(1.04); }
.modal-gimg-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  opacity: 0; transition: opacity .3s;
}
.modal-gimg:hover .modal-gimg-overlay { opacity: 1; }
.modal-hero-img { aspect-ratio: 16/7; overflow: hidden; }
.modal-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-content { padding: 40px 48px; }
.modal-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.modal-title em { font-style: italic; color: var(--terra); }
.modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--warm);
}
.modal-stars { color: var(--gold); font-size: .9rem; }
.modal-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: var(--stone);
  letter-spacing: .06em;
}
.modal-meta-item i { color: var(--terra); }
.modal-cat-badge {
  background: var(--terra);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.modal-amenities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.modal-amenity {
  padding: 6px 14px;
  border: 1px solid var(--warm);
  border-radius: 2px;
  font-size: .78rem;
  color: var(--stone);
  display: flex; align-items: center; gap: 6px;
  text-transform: capitalize;
}
.modal-amenity i { color: var(--terra); }
.modal-article {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.modal-article p { margin-bottom: 18px; }
.modal-article p:last-child { margin-bottom: 0; }
.modal-article strong { color: var(--ink); font-weight: 600; }
.modal-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--warm);
}
@media (max-width: 600px) {
  .modal-panel { width: 100vw; }
  .modal-content { padding: 28px 24px; }
  .modal-gallery { grid-template-columns: 1fr; }
  .modal-gimg-main { grid-column: auto; }
}

/* ═══════════════════════════════════════════
   RESTO FEATURED (hero card) — podstranice
═══════════════════════════════════════════ */
.resto-featured-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(0,0,0,.12);
  min-height: 480px;
}
.resto-featured-img {
  position: relative;
  overflow: hidden;
}
.resto-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-expo);
  display: block;
}
.resto-featured-wrap:hover .resto-featured-img img { transform: scale(1.04); }
.resto-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.1), rgba(0,0,0,.4));
}
.resto-featured-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--terra);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.resto-featured-body {
  background: var(--cream);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.resto-featured-body .section-title { margin-bottom: 0; }
.resto-featured-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.resto-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: .85rem; color: var(--stone);
}
.resto-meta-row i { color: var(--terra); margin-right: 4px; }
@media (max-width: 900px) {
  .resto-featured-wrap { grid-template-columns: 1fr; min-height: auto; }
  .resto-featured-img { aspect-ratio: 16/9; }
  .resto-featured-body { padding: 36px 28px; }
}

/* ═══════════════════════════════════════════
   BLOG FEATURED CARD
═══════════════════════════════════════════ */
.blog-featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  transition: transform .5s var(--ease-expo), box-shadow .5s;
}
.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.14);
}
.blog-featured-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-expo);
  display: block;
  background: linear-gradient(135deg, var(--ocean), var(--terra));
}
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}
.blog-featured-body p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--stone);
  flex: 1;
}
@media (max-width: 768px) {
  .blog-featured-wrap { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   DESTINACIJE PAGE
═══════════════════════════════════════════ */
.dest-region-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--warm);
}
.dest-region-section:last-child { border-bottom: none; }
.dest-region-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 32px;
}
.dest-region-label::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--terra);
}

/* ═══════════════════════════════════════════
   BLOG IMG fix (actual img not placeholder)
═══════════════════════════════════════════ */
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-expo);
}
.blog-row:hover .blog-img img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   MODAL TRIGGER as inline button (no bg)
═══════════════════════════════════════════ */
button.modal-trigger {
  background: none;
  border: none;
  cursor: none;
  font-family: var(--font-body);
  padding: 0;
  text-align: left;
}
button.smjestaj-card-link { background: none; border: none; cursor: none; font-family: var(--font-body); }
button.smjestaj-page-card-link { background: none; border: none; cursor: none; font-family: var(--font-body); }

/* ═══════════════════════════════════════════
   NAV ACTIVE PAGE INDICATOR
═══════════════════════════════════════════ */
.nav-links a.nav-active { color: var(--terra) !important; }
.nav-links a.nav-active::after { width: 100% !important; }

/* ═══════════════════════════════════════════
   INTRO IMAGE fix
═══════════════════════════════════════════ */
.intro-image-main {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-lt));
  min-height: 400px;
}

/* ═══════════════════════════════════════════
   ADDITIONS — Otkrijte Hrvatsku v2
   Novi stili za nove komponente
═══════════════════════════════════════════ */

/* CSS varijable — charcoal alias za ink */
:root {
  --charcoal: #1c1a18;
  --sand-dark: #d8cfc5;
}

/* ── CARD IMAGE OVERLAY ICON (click to lightbox) ── */
.card-image-wrap,
.resto-page-card-img,
.smjestaj-page-card-img,
.blog-featured-img,
.gastro-intro-img {
  position: relative;
  overflow: hidden;
}
.card-img-overlay-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: rgba(28,26,24,.55);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.card-image-wrap:hover .card-img-overlay-icon,
.resto-page-card-img:hover .card-img-overlay-icon,
.smjestaj-page-card-img:hover .card-img-overlay-icon,
.blog-featured-img:hover .card-img-overlay-icon,
.gastro-intro-img:hover .card-img-overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── BTN GHOST ── */
.btn-ghost {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--terra);
  color: #fff;
}

/* ── BTN GOLD ── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .25s;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-lt); }

/* ── CARDS GRID (universal) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ── GASTRO GRID OVERRIDE ── */
#gastro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

/* ── SMJEŠTAJ CARDS GRID ── */
.smjestaj-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
@media (max-width: 640px) {
  .smjestaj-cards-grid { grid-template-columns: 1fr; }
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-expo);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,26,24,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  color: #fff;
  font-size: 1.3rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── BLOG FEATURED WRAP ── */
.blog-featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .blog-featured-wrap { grid-template-columns: 1fr; }
}

/* ── BLOG FEATURED CARD ── */
.blog-featured-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-expo);
}
.blog-featured-card:hover { transform: translateY(-4px); }
.blog-featured-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-expo);
}
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.blog-featured-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ── BLOG ROW ── */
.blog-row {
  display: grid;
  grid-template-columns: 140px 1fr 56px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--sand-dark);
  transition: background .2s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.blog-row:first-child { border-top: 1px solid var(--sand-dark); }
.blog-row:hover { background: rgba(201,168,108,.04); }
.blog-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
  flex-shrink: 0;
}
.blog-img img { transition: transform .4s var(--ease-expo); }
.blog-row:hover .blog-img img { transform: scale(1.05); }
.blog-info { flex: 1; }
.blog-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sand-dark);
  text-align: right;
  line-height: 1;
}
@media (max-width: 640px) {
  .blog-row { grid-template-columns: 90px 1fr; }
  .blog-num { display: none; }
}

/* ── MODAL STYLES ── */
#article-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
}
#article-modal.open { display: flex; align-items: flex-start; justify-content: flex-end; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,26,24,.7);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 96vw);
  height: 100vh;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease-expo);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.modal-panel.visible { transform: translateX(0); }
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 16px 0 0;
  width: 40px; height: 40px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 10;
  cursor: pointer;
  transition: background .2s;
}
.modal-close:hover { background: var(--terra); }
.modal-body { padding: 0 0 48px; }
.modal-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 0;
}
.modal-gimg { display: block; position: relative; overflow: hidden; }
.modal-gimg-main { grid-column: 1 / -1; aspect-ratio: 16/9; }
.modal-gimg-sm { aspect-ratio: 4/3; }
.modal-gimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.modal-gimg:hover img { transform: scale(1.04); }
.modal-gimg-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  opacity: 0; transition: opacity .3s;
}
.modal-gimg:hover .modal-gimg-overlay { opacity: 1; }
.modal-hero-img { position: relative; }
.modal-hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.modal-content { padding: 32px 36px 0; }
.modal-label {
  font-size: .82rem;
  color: var(--stone);
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.5;
}
.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.modal-meta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand-dark);
  margin-bottom: 24px;
}
.modal-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; color: var(--stone);
}
.modal-meta-item i { color: var(--gold); }
.modal-stars i { color: var(--gold); font-size: .85rem; }
.modal-cat-badge {
  background: var(--gold);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.modal-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.modal-article p strong { font-weight: 600; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.modal-amenity {
  background: var(--sand);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  color: var(--stone);
  display: flex; align-items: center; gap: 6px;
}
.modal-amenity i { color: var(--gold); }
.modal-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-dark);
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ── GASTRO INTRO ── */
.gastro-intro {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.gastro-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .gastro-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
.gastro-intro-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gastro-intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-expo); }
.gastro-intro-img:hover img { transform: scale(1.04); }

/* ── DESTINATION REGION ── */
.dest-region-section { margin-bottom: 72px; }
.dest-region-section:last-child { margin-bottom: 0; }

/* ── PAGE HERO ── */
#page-hero {
  position: relative;
  height: min(85vh, 700px);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  will-change: transform;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28,26,24,.88) 0%, rgba(28,26,24,.3) 60%, rgba(28,26,24,.15) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 0 72px;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  letter-spacing: .06em;
}
.page-breadcrumb span { color: rgba(255,255,255,.35); }
.page-breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-hero-tag {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.08;
  color: #fff; margin-bottom: 24px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.72);
  max-width: 600px; line-height: 1.7;
}

/* ── DIVIDER WAVE ── */
.divider-wave { line-height: 0; }
.divider-wave svg { display: block; width: 100%; }

/* ── SMJEŠTAJ PAGE CARD ── */
.smjestaj-page-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease-expo);
}
.smjestaj-page-card:hover { transform: translateY(-5px); }
.smjestaj-page-card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.smjestaj-page-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-expo);
}
.smjestaj-page-card:hover .smjestaj-page-card-img img { transform: scale(1.04); }
.smjestaj-page-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  bottom: auto;
  background: rgba(28,26,24,.75);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  z-index: 2;
}
.smjestaj-page-card-body {
  padding: 24px 24px 28px;
}
.smjestaj-page-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--charcoal);
  line-height: 1.2;
}
.smjestaj-page-card-title a { color: inherit; }
.smjestaj-page-card-title a:hover { color: var(--terra); }
.smjestaj-page-card-desc {
  font-size: .9rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 16px;
}
.smjestaj-page-card-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: .82rem; color: var(--stone);
  margin-bottom: 18px;
}
.smjestaj-page-card-meta span { display: flex; align-items: center; gap: 6px; }
.smjestaj-page-card-meta i { color: var(--gold); }
.smjestaj-page-card-link {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  transition: gap .2s;
}
.smjestaj-page-card-link:hover { gap: 12px; }

/* ── RESTO PAGE CARD ── */
.restorani-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
@media (max-width: 640px) { .restorani-page-grid { grid-template-columns: 1fr; } }

.resto-page-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease-expo);
}
.resto-page-card:hover { transform: translateY(-5px); }
.resto-page-card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.resto-page-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-expo);
}
.resto-page-card:hover .resto-page-card-img img { transform: scale(1.04); }
.resto-page-card-body { padding: 24px 24px 28px; }
.resto-page-card-body .card-title a { color: inherit; }
.resto-page-card-body .card-title a:hover { color: var(--terra); }
.resto-stars { display: flex; gap: 3px; margin-bottom: 8px; }
.resto-stars i { color: var(--gold); font-size: .82rem; }
.resto-info {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: var(--stone);
  margin-bottom: 18px;
}
.resto-info span { display: flex; align-items: center; gap: 5px; }
.resto-info i { color: var(--gold); }
.card-link {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  transition: gap .2s;
  border: none; background: none;
  cursor: pointer; padding: 0; font-family: inherit;
}
.card-link:hover { gap: 12px; }

/* ── RESTO FEATURED ── */
.resto-featured-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  min-height: 460px;
  background: var(--charcoal);
}
@media (max-width: 768px) {
  .resto-featured-wrap { grid-template-columns: 1fr; }
}
.resto-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.resto-featured-img img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-expo);
}
.resto-featured-wrap:hover .resto-featured-img img { transform: scale(1.04); }
.resto-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(28,26,24,.4));
}
.resto-featured-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(28,26,24,.8);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .8rem;
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(4px);
}
.resto-featured-body {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--charcoal);
  color: #fff;
}
.resto-featured-body .section-label { color: var(--gold); }
.resto-featured-body .section-title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.resto-featured-body p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 16px; }
.resto-featured-body .section-title a { color: inherit; }
.resto-meta-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: .85rem; color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.resto-meta-row span { display: flex; align-items: center; gap: 6px; }
.resto-meta-row i { color: var(--gold); }

/* ── SEARCH BAR ── */
.search-wrap {
  position: relative;
  margin-bottom: 24px;
}
.search-icon {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--stone); font-size: .95rem;
}
#search-input {
  width: 100%;
  padding: 14px 48px 14px 48px;
  border: 1.5px solid var(--sand-dark);
  background: var(--white);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
}
#search-input:focus { border-color: var(--terra); }
#search-clear {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--stone); font-size: .9rem;
  cursor: pointer; padding: 4px;
  transition: color .2s;
}
#search-clear:hover { color: var(--terra); }

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 20px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--stone);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .04em;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── PARALLAX SPLIT ── */
#parallax-split {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  min-height: 500px;
  display: flex; align-items: center;
}
.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,26,24,.72);
}
.parallax-content {
  position: relative; z-index: 2;
  max-width: 640px;
}
.parallax-content .section-label { color: var(--gold); }
.parallax-content .section-title { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); }
.parallax-content p { color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 32px; }

/* ── NEWSLETTER ── */
#newsletter {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}
.newsletter-text h3 em { font-style: italic; color: var(--gold); }
.newsletter-text p { color: rgba(255,255,255,.6); line-height: 1.7; }
.newsletter-form {
  display: flex; gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  border-radius: 3px 0 0 3px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--gold);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--terra); }

/* ── FOOTER ── */
footer {
  background: #111;
  padding: var(--section-pad) 0 40px;
  color: rgba(255,255,255,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 320px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: all .25s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--terra); border-color: var(--terra); color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--terra);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  z-index: 9999998; cursor: pointer;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--terra-dk); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--charcoal);
  color: #fff;
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform .4s var(--ease-expo);
  display: flex; justify-content: center;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner.hide { transform: translateY(100%); }
#cookie-banner > div { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; max-width: 900px; width: 100%; }
#cookie-banner p { font-size: .88rem; color: rgba(255,255,255,.75); flex: 1; margin: 0; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept, .cookie-decline {
  padding: 8px 18px;
  border-radius: 3px;
  font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: all .2s;
  font-family: var(--font-body);
  border: none;
}
.cookie-accept { background: var(--terra); color: #fff; }
.cookie-accept:hover { background: var(--terra-dk); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.2); }
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  transition: opacity .4s;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
}
.loader-logo span { color: var(--gold); font-style: italic; }
.loader-bar-wrap {
  width: min(200px, 50vw);
  height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width .08s linear;
  border-radius: 2px;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(28,26,24,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center;
  height: 100%; gap: 32px;
  width: min(1240px, 92vw);
  margin-inline: auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: .06em;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex; gap: 28px;
  list-style: none; margin: 0; padding: 0;
  margin-left: auto;
}
.nav-links a {
  font-size: .8rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover, .nav-links a.nav-active { color: #fff; }
.nav-links a:hover::after, .nav-links a.nav-active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-toggle { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  cursor: pointer; padding: 3px 0;
  border: none; background: none; font-family: inherit;
  transition: color .2s;
}
.lang-btn.active, .lang-btn:hover { color: #fff; }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.7);
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

.nav-mobile {
  position: fixed; inset: 0; z-index: 480;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 20px;
  transform: translateX(-100%);
  transition: transform .4s var(--ease-expo);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .06em;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-overlay {
  position: fixed; inset: 0; z-index: 470;
  background: rgba(0,0,0,.5);
  display: none;
}
.nav-overlay.open { display: block; }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo);
}
.reveal          { transform: translateY(28px); }
.reveal-left     { transform: translateX(-40px); }
.reveal-right    { transform: translateX(40px); }
.reveal-scale    { transform: scale(.94); }
.reveal.active, .reveal-left.active,
.reveal-right.active, .reveal-scale.active {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .34s; }
.delay-4 { transition-delay: .46s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 3px;
  transition: all .25s;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-dk); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-white { background: #fff; color: var(--charcoal); }
.btn-white:hover { background: var(--gold); color: #fff; }

/* ── CARD CATEGORY BADGE ── */
.card-category {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(28,26,24,.75);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(4px);
}

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease-expo);
}
.card:hover { transform: translateY(-5px); }
.card-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.card-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-expo);
}
.card:hover .card-image { transform: scale(1.04); }
.card-body { padding: 22px 22px 26px; }
.card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--stone);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 300;
  line-height: 1.2; margin-bottom: 10px;
  color: var(--charcoal);
}
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--terra); }
.card-excerpt {
  font-size: .88rem; line-height: 1.65;
  color: var(--stone); margin-bottom: 16px;
}

/* ── CARD FEATURED ── */
.card-featured {
  grid-column: 1 / -1;
}
.card-featured .card-image-wrap { aspect-ratio: 21/9; }
@media (max-width: 640px) {
  .card-featured { grid-column: auto; }
  .card-featured .card-image-wrap { aspect-ratio: 16/9; }
}

/* ── FORM STATUS ── */
#form-status {
  padding: 12px 0;
  font-size: .9rem;
  border-radius: 3px;
}
#form-status.success { color: #2e7d32; }
#form-status.error { color: #c62828; }
#form-status.is-success { color: #2e7d32; }
#form-status.is-error   { color: #c62828; }
#form-status.is-sending { opacity: .7; }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE OVERFLOW FIX
   Sprječava horizontalni scroll na svim mobitelima —
   od iPhone SE (375px) do iPhone Pro Max (430px) i Android uređaja.
   Organizirano od globalnih pravila prema komponentama.
═══════════════════════════════════════════════════════════════════ */

/* 1 — Globalna zaštita: i html mora imati overflow-x:hidden */
html { overflow-x: hidden; }
*, *::before, *::after { max-width: 100%; }
img, video, iframe, embed, object { max-width: 100%; }

/* 2 — Breadcrumbi smiju prelomiti u novi red */
.page-breadcrumb { flex-wrap: wrap; }
.article-meta-bar { flex-wrap: wrap; }

/* 3 — Swiper restorani: mobitel */
@media (max-width: 768px) {
  #restorani { overflow: hidden; }
  .swiper-restorani { overflow: hidden !important; }
  .swiper-restorani .swiper-slide {
    width: min(320px, calc(100vw - 48px)) !important;
  }
}

/* 3b — Restorani header: ensure text clears the 120px decorative ::before on mobile */
@media (max-width: 640px) {
  #restorani {
    padding-top: 148px;
  }
  .restorani-header {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 48px;
  }
}

/* 4 — Newsletter (index.html verzija) — fiksirani width inputa */
@media (max-width: 640px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input {
    width: 100% !important;
    min-width: 0;
    border-radius: 3px;
  }
  .newsletter-form button { width: 100%; border-radius: 3px; }
}

/* 5 — Newsletter (subpage verzija) — stack na malim ekranima */
@media (max-width: 480px) {
  .newsletter-form input { border-radius: 3px 3px 0 0; }
  .newsletter-form button { border-radius: 0 0 3px 3px; width: 100%; }
}

/* 6 — Blog row hover: negativni margini mogu uzrokovati overflow */
@media (max-width: 900px) {
  .blog-row:hover {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* 7 — Intro image badge: negativna pozicija left:-24px */
@media (max-width: 600px) {
  .intro-image-badge {
    left: 0;
    bottom: -16px;
    font-size: 1rem;
    padding: 16px 18px;
    max-width: 160px;
  }
}

/* 8 — Section header: ne smije teći horizontalno */
@media (max-width: 540px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* 9 — Hero gumbi: stek na malim ekranima */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { text-align: center; justify-content: center; width: 100%; max-width: 280px; }
}

/* 10 — Kontakt forma na malim ekranima */
@media (max-width: 480px) {
  .contact-form { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr !important; }
  .kontakt-info p { max-width: 100%; }
}

/* 11 — About section: absolutno pozicionirani element */
@media (max-width: 480px) {
  .about-img-accent {
    right: 0;
    top: 12px;
    width: 72px;
    height: 72px;
    font-size: .78rem;
  }
  .about-images { padding-bottom: 72px; }
}

/* 12 — Stats row: 3 u redu pregusto na malim telefonima */
@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 16px; }
}

/* 13 — Footer: stek na najužim ekranima */
@media (max-width: 400px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* 14 — Back-to-top: ne smije ići van desne strane */
@media (max-width: 480px) {
  #back-to-top { right: 16px; bottom: 20px; }
}

/* 15 — Cookie banner na uskim ekranima */
@media (max-width: 480px) {
  #cookie-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px);
  }
}

/* 16 — Swiper navigacijski gumbi */
@media (max-width: 400px) {
  .swiper-btn-custom { width: 40px; height: 40px; }
}

/* 17 — Nav mobile: puna širina, bez overflow-a */
@media (max-width: 480px) {
  .nav-mobile { max-width: 100vw; }
}

/* 18 — Page hero content padding na tiny ekranima */
@media (max-width: 420px) {
  .page-hero-content { padding-bottom: 32px; }
  .page-hero-title { margin-bottom: 12px; }
}

/* 19 — Resto info sidebar mapa na article stranici */
@media (max-width: 480px) {
  .sidebar-resto-info .resto-map-wrap { height: 160px; }
}

/* ── SIDEBAR RESTO INFO (map + hours + address) ── */
.sidebar-resto-info { padding: 0; overflow: hidden; }
.resto-map-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.resto-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.resto-info-inner { padding: 20px 24px 24px; }
.resto-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sand-dark, #d8cfc5);
}
.resto-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.resto-detail-row i {
  color: var(--terra);
  font-size: .82rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.resto-detail-row a { color: var(--terra); text-decoration: none; }
.resto-detail-row a:hover { text-decoration: underline; }
.resto-hours-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.resto-hours-seasonal {
  font-size: .8rem;
  color: var(--stone);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.resto-hours-seasonal i { color: var(--gold); }
.resto-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
}
.resto-hours-table td {
  padding: 5px 0;
  color: var(--stone);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.resto-hours-table tr:last-child td { border-bottom: none; }
.resto-hours-table .rh-day { width: 50%; }
.resto-hours-table .rh-time { text-align: right; font-variant-numeric: tabular-nums; }
.resto-hours-table tr.rh-closed td { color: #c0392b; opacity: .8; }
.resto-hours-table tr.rh-today td {
  color: var(--charcoal);
  font-weight: 600;
}
.resto-hours-table tr.rh-today .rh-time { color: var(--terra); }

