  :root {
    --color-bg: #faf6f0;
    --color-bg-section: #f4ede2;
    --color-taupe: #d4c7b3;
    --color-taupe-light: #e8dccb;
    --color-dark: #3d2e21;
    --color-dark-soft: #5a4533;
    --color-accent: #c9a274;
    --color-accent-soft: #efd9bf;
    --color-text: #2d2218;
    --color-muted: #8a7866;
    --color-border: rgba(61,46,33,0.12);
    --color-white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-italic: 'Cormorant', Georgia, serif;
    --shadow-card: 0 2px 12px rgba(61,46,33,0.06);
    --shadow-card-hover: 0 20px 40px rgba(61,46,33,0.14);
  }

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

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
  }

  img { display: block; max-width: 100%; height: auto; border-radius: 0; }
  a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
  button, input, select, textarea { font-family: inherit; border-radius: 0; outline: none; }

  .label {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: inline-block;
    margin-bottom: 18px;
  }

  h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.1; color: var(--color-dark); }
  p { font-weight: 300; line-height: 1.85; color: var(--color-dark-soft); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: var(--color-accent-soft);
    color: var(--color-dark);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
  }
  .btn:hover { background: var(--color-accent); color: var(--color-white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,116,0.35); }
  .btn--neutral { background: var(--color-taupe-light); color: var(--color-dark); }
  .btn--neutral:hover { background: var(--color-taupe); color: var(--color-dark); }
  .btn--outline { background: transparent; color: var(--color-dark); border: 1px solid var(--color-dark); padding: 14px 36px; }
  .btn--outline:hover { background: var(--color-dark); color: var(--color-white); }
  .btn--small { padding: 14px 28px; font-size: 0.72rem; }

  .icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
  .icon--lg { width: 28px; height: 28px; }
  .icon--sm { width: 16px; height: 16px; }

  /* ============ NAVBAR ============ */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    transition: transform 0.4s ease;
  }
  .navbar.is-hidden { transform: translateY(-100%); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5vw;
    gap: 24px;
  }
  .nav-logo img { height: 54px; width: auto; }
  .nav-links {
    display: flex; gap: 38px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-dark);
    position: relative;
    padding: 4px 0;
  }
  .nav-links a:hover { color: var(--color-accent); }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -4px;
    height: 1px; width: 0; background: var(--color-accent);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta { padding: 14px 28px; font-size: 0.72rem; }

  .hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    padding: 8px;
  }
  .hamburger .icon { width: 26px; height: 26px; }
  .mobile-menu {
    display: none;
    position: fixed; top: 90px; left: 0; right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 5vw 40px;
    z-index: 99;
  }
  .mobile-menu.is-open { display: block; animation: slideDown 0.3s ease; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 26px; }
  .mobile-menu a {
    font-family: var(--font-sans); font-weight: 400; font-size: 0.85rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-dark);
  }
  .mobile-menu .btn { width: 100%; }

  /* ============ HERO ============ */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    height: 100dvh;
    padding: 90px 0 0;
    overflow: hidden;
  }
  .hero-left {
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6vw 5vw;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(201,162,116,0.12), transparent 70%);
    pointer-events: none;
  }
  .hero-left .label { color: var(--color-accent-soft); margin-bottom: 30px; letter-spacing: 0.3em; }
  .hero h1 {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.0;
    color: var(--color-white);
    margin-bottom: 32px;
  }
  .hero h1 .italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--color-accent-soft); }
  .hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: 1.02rem;
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 38px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

  .hero-right { position: relative; overflow: hidden; }
  .hero-right img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: heroZoom 1.4s ease forwards;
  }
  @keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }

  /* Hero stagger animation */
  .stagger { opacity: 0; transform: translateY(30px); animation: staggerIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .stagger-1 { animation-delay: 0ms; }
  .stagger-2 { animation-delay: 200ms; }
  .stagger-3 { animation-delay: 350ms; }
  .stagger-4 { animation-delay: 500ms; }
  .stagger-5 { animation-delay: 700ms; }
  .stagger-6 { animation-delay: 900ms; }
  @keyframes staggerIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============ SECTION HEADER ============ */
  .section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
  .section-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.3rem);
    margin-bottom: 18px;
  }
  .section-header p { color: var(--color-muted); font-size: 1rem; }

  section { padding: 50px 5vw; }

  /* ============ O VLASNICI ============ */
  .owner { background: var(--color-bg-section); }
  .owner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
    align-items: center;
  }
  .owner-img { position: relative; }
  .owner-img--mobile { display: none; }
  .owner-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
  }
  .owner-img::before,
  .owner-img::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    border: 2px solid var(--color-accent);
    pointer-events: none;
  }
  .owner-img::before { top: -12px; left: -12px; border-right: none; border-bottom: none; }
  .owner-img::after { bottom: -12px; right: -12px; border-left: none; border-top: none; }
  .owner-text h2 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin-bottom: 20px;
  }
  .owner-accent {
    width: 56px;
    height: 2px;
    background: var(--color-accent);
    margin-bottom: 26px;
  }
  .owner-text p { margin-bottom: 16px; }
  .owner-sig {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--color-muted);
  }
  .owner-cta { margin-top: 26px; }

  /* ============ SERVICES (SLIDER) ============ */
  .services { background: var(--color-bg-section); }
  .services-slider { position: relative; max-width: 1400px; margin: 0 auto; padding: 0 72px; }
  .services-viewport { overflow: hidden; }
  .services-track {
    display: flex;
    gap: 16px;
    align-items: stretch;
    will-change: transform;
  }
  .service-card {
    flex: 0 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color 0.4s ease;
  }
  .service-card:hover { border-color: var(--color-accent); }
  .service-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; flex-shrink: 0; }
  .service-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
  }
  .service-card:hover img { transform: scale(1.04); }
  .service-card-body {
    padding: 24px;
    border-top: 1px solid var(--color-border);
    flex: 1;
    display: flex; flex-direction: column;
  }
  .service-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-dark); }
  .service-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .service-cta { margin-top: auto; align-self: stretch; }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--color-accent);
    color: var(--color-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: background 0.3s ease;
  }
  .slider-btn:hover { background: var(--color-dark); }
  .slider-btn .icon { width: 20px; height: 20px; }
  .slider-btn.prev { left: 0; }
  .slider-btn.prev .icon { transform: rotate(180deg); }
  .slider-btn.next { right: 0; }

  .slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
  .slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--color-border);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .slider-dot.active { background: var(--color-accent); transform: scale(1.2); }

  /* ============ GALLERY / INSTAGRAM ============ */
  .gallery { background: var(--color-white); padding: 50px 5vw 40px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 72px;
  }
  .gallery-tile {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
    background: var(--color-bg-section);
  }
  .gallery-tile img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
  }
  .gallery-tile:hover img { transform: scale(1.08); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(61,46,33,0.55);
    color: var(--color-white);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gallery-tile:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span {
    font-family: var(--font-sans); font-weight: 500;
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  }
  .gallery-cta { text-align: center; }

  /* ============ REVIEWS (MARQUEE) ============ */
  .reviews { background: var(--color-bg-section); }
  .reviews-marquee {
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  }
  .reviews-track {
    display: flex;
    width: max-content;
    animation: reviews-scroll 55s linear infinite;
    will-change: transform;
  }
  .reviews-marquee:hover .reviews-track { animation-play-state: paused; }
  @keyframes reviews-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .reviews-set { display: flex; gap: 24px; padding-right: 24px; }
  .review-card {
    width: 340px;
    flex: 0 0 auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
  }
  .review-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--color-accent); }
  .review-stars svg { width: 15px; height: 15px; fill: var(--color-accent); }
  .review-text {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .review-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
  .review-name {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-dark);
  }
  .review-time {
    display: block;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    color: var(--color-muted);
    margin: 2px 0 12px;
  }
  .review-google {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.78rem;
    color: var(--color-muted);
  }
  .google-mark { width: 17px; height: 17px; flex-shrink: 0; }
  .reviews-link-wrap { text-align: center; margin-top: 50px; }

  /* ============ CONTACT ============ */
  .contact { background: var(--color-white); padding: 55px 5vw; }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .contact-info h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin-bottom: 36px;
  }
  .contact-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
  }
  .contact-row:last-of-type { border-bottom: none; }
  .contact-icon { color: var(--color-accent); display: flex; align-items: flex-start; padding-top: 2px; }
  .contact-row-content {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--color-dark-soft);
    line-height: 1.85;
  }
  .contact-row-content a { color: var(--color-dark); }
  .contact-row-content a:hover { color: var(--color-accent); }
  .contact-row-content strong {
    font-weight: 500;
    color: var(--color-dark);
    display: block;
    margin-bottom: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .contact-note {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-top: 30px;
    line-height: 1.6;
    max-width: 420px;
  }

  .booking-panel {
    background: var(--color-bg-section);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .booking-panel h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--color-dark);
  }
  .booking-panel > p { margin-bottom: 28px; }
  .booking-btn { width: 100%; }
  .booking-alt {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin-top: 22px;
    margin-bottom: 0;
  }
  .booking-alt a { color: var(--color-dark); border-bottom: 1px solid var(--color-border); }
  .booking-alt a:hover { color: var(--color-accent); border-color: var(--color-accent); }
  .booking-map {
    width: 100%;
    flex: 1;
    min-height: 260px;
    margin-top: 28px;
  }
  .booking-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: sepia(0.2) saturate(0.9) contrast(1.05);
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--color-dark);
    color: var(--color-white);
    border-top: 1px solid rgba(201,162,116,0.3);
    padding: 80px 5vw 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 60px;
  }
  .footer-logo img {
    height: 64px; width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 22px;
  }
  .footer-logo p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 6px;
  }
  .footer-col .label {
    color: var(--color-accent-soft);
    font-size: 0.7rem;
    margin-bottom: 22px;
    display: block;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a, .footer-col li {
    color: rgba(255,255,255,0.72);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .footer-col a:hover { color: var(--color-white); }
  .footer-social {
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px;
    color: var(--color-white);
  }
  .footer-social .icon { width: 26px; height: 26px; }
  .footer-social:hover { color: var(--color-accent-soft); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.74rem;
    font-weight: 300;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ============ PRICELIST / CJENIK (tabovi + accordion) ============ */
  .pricelist { background: var(--color-bg); }
  .cjenik { max-width: 1080px; margin: 0 auto; }
  .cjenik-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    overflow-x: auto;
  }
  .cjenik-tab {
    flex: 1 1 auto;
    white-space: nowrap;
    padding: 12px 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-dark-soft);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }
  .cjenik-tab:hover { border-color: var(--color-accent); color: var(--color-dark); }
  .cjenik-tab.is-active {
    background: var(--color-accent-soft);
    border-color: var(--color-accent);
    color: var(--color-dark);
  }
  .cjenik-panel { display: none; }
  .cjenik-panel.is-open { display: block; }
  .cjenik-acc { display: none; } /* na desktopu je naziv kategorije u tabu */
  .cjenik-panel-body .price-list { columns: 2; column-gap: 72px; }
  .cjenik .price-item { break-inside: avoid; }
  .price-list { list-style: none; }
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }
  .price-item:last-child { border-bottom: none; }
  .price-name {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
  }
  .price-value {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--color-dark);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  /* ============ MAP PLACEHOLDER (prije privole) ============ */
  .map-placeholder {
    height: 100%;
    min-height: inherit;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 24px;
  }
  .map-placeholder p {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin: 0;
  }
  .map-placeholder a {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-dark);
    padding-bottom: 2px;
  }
  .map-placeholder a:hover { color: var(--color-accent); border-color: var(--color-accent); }

  /* ============ COOKIE BANNER (plutajuća kartica) ============ */
  .cookie-banner {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    margin: 0 auto;
    max-width: 680px;
    z-index: 300;
    background: var(--color-white);
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 24px;
  }
  .cookie-banner p {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1 1 280px;
  }
  .cookie-banner a { color: var(--color-accent); text-decoration: underline; }
  .cookie-banner a:hover { color: var(--color-dark); }
  .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-accept { background: var(--color-dark); color: var(--color-white); }
  .cookie-accept:hover { background: var(--color-dark-soft); color: var(--color-white); box-shadow: none; }
  .cookie-reject {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
  }
  .cookie-reject:hover { background: var(--color-dark); color: var(--color-white); box-shadow: none; }

  /* ============ PRAVNE STRANICE ============ */
  .legal-main {
    max-width: 780px;
    margin: 0 auto;
    padding: 150px 5vw 70px;
  }
  .legal-main h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
  }
  .legal-updated {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 42px;
  }
  .legal-main h2 {
    font-size: 1.25rem;
    margin: 36px 0 12px;
  }
  .legal-main p { margin-bottom: 14px; }
  .legal-main ul { padding-left: 22px; margin-bottom: 14px; }
  .legal-main li { font-weight: 300; line-height: 1.85; color: var(--color-dark-soft); margin-bottom: 6px; }
  .legal-main a { color: var(--color-dark); border-bottom: 1px solid var(--color-border); }
  .legal-main a:hover { color: var(--color-accent); border-color: var(--color-accent); }
  .legal-impressum {
    border: 1px solid var(--color-border);
    background: var(--color-bg-section);
    padding: 28px 30px;
    margin-top: 40px;
    font-size: 0.92rem;
    line-height: 2;
  }
  .legal-links {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  /* ============ FOOTER: pravne poveznice ============ */
  .footer-legal {
    text-align: center;
    padding-bottom: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
  }
  .footer-legal a {
    color: rgba(255,255,255,0.72);
    margin: 0 10px;
    font-family: var(--font-sans);
    font-weight: 300;
  }
  .footer-legal a:hover { color: var(--color-white); }

  /* ============ REVEAL ANIMATION ============ */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 0.72rem; letter-spacing: 0.14em; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .nav-inner { padding: 14px 5vw; }
    .nav-logo img { height: 44px; }
    .mobile-menu { top: 72px; }
    /* Cjenik na mobitelu: accordion umjesto tabova */
    .cjenik-tabs { display: none; }
    .cjenik-panel { display: block; border-bottom: 1px solid var(--color-border); }
    .cjenik-panel:first-of-type { border-top: 1px solid var(--color-border); }
    .cjenik-acc {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 2px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-serif);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--color-dark);
      text-align: left;
    }
    .cjenik-acc .icon { color: var(--color-accent); transition: transform 0.3s ease; }
    .cjenik-panel.is-open .cjenik-acc .icon { transform: rotate(180deg); }
    .cjenik-panel-body {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease;
    }
    .cjenik-panel.is-open .cjenik-panel-body { max-height: 900px; }
    .cjenik-panel-body .price-list { columns: 1; padding-bottom: 10px; }
    /* Hero na mobitelu: puna slika + tamni preliv + tekst preko */
    .hero {
      display: block;
      position: relative;
      height: auto;
      min-height: 100vh;
      min-height: 100svh;
      padding-top: 72px;
      overflow: hidden;
    }
    .hero-right {
      position: absolute;
      inset: 0;
      min-height: 0;
    }
    .hero-right img { width: 100%; height: 100%; object-fit: cover; }
    .hero-right::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(40,30,25,0.45), rgba(30,22,18,0.75));
    }
    .hero-left {
      position: relative;
      z-index: 2;
      background: transparent;
      min-height: calc(100vh - 72px);
      min-height: calc(100svh - 72px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 44px 7vw 60px;
    }
    .hero h1 { margin-bottom: 20px; }
    .hero-sub { margin-bottom: 28px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; padding: 15px 18px; font-size: 0.72rem; letter-spacing: 0.12em; }
    .hero-ctas .btn--neutral {
      background: transparent;
      color: var(--color-white);
      border: 1px solid rgba(255,255,255,0.7);
    }
    .hero-ctas .btn--neutral:hover {
      background: rgba(255,255,255,0.14);
      color: var(--color-white);
    }
    section { padding: 35px 5vw; }
    .services-slider { padding: 0; }
    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      margin-top: 14px;
    }
    .slider-btn { position: static; transform: none; width: 44px; height: 44px; flex-shrink: 0; }
    .slider-dots { margin-top: 0; }
    /* Recenzije na mobitelu: jedna kartica + peek sljedeće */
    .review-card { width: 85vw; }
    .reviews-set { gap: 16px; padding-right: 16px; }
    /* Galerija na mobitelu: 2 stupca */
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 0;
      margin-bottom: 30px;
    }
    .gallery-cta .btn { width: 100%; }
    /* O vlasnici na mobitelu: slika nakon 1. odlomka */
    .owner-inner { grid-template-columns: 1fr; }
    .owner-img--desktop { display: none; }
    .owner-img--mobile { display: block; margin: 12px 8px 28px; }
    .owner-img::before, .owner-img::after { width: 40px; height: 40px; }
    .owner-img::before { top: -8px; left: -8px; }
    .owner-img::after { bottom: -8px; right: -8px; }
    .owner-text h2 { font-size: 1.7rem; }
    .owner-text h2 br { display: none; }
    .owner-cta .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact { padding: 35px 5vw; }
    .booking-map { min-height: 280px; }
    .gallery { padding: 35px 5vw 25px; }
  }

  @media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .section-header { margin-bottom: 44px; }
    .booking-panel { padding: 34px 24px; }
  }

  /* ============ Accessibility ============ */
  :focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .reviews-track { animation: none !important; }
  }
