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

    :root {
      --cream: #f8f4ee;
      --warm: #e8dcc8;
      --stone: #c9b99a;
      --brown: #7a5c3a;
      --dark: #2c2416;
      --blue: #4a8fa8;
      --blue-dark: #2d6b84;
      --green: #5a7a4a;
      --gold: #c8952a;
      --white: #ffffff;
      --gray: #6b6b6b;
      --light-gray: #f0ece6;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(44,36,22,0.10);
      --shadow-lg: 0 8px 48px rgba(44,36,22,0.16);
      --transition: 0.3s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAVBAR ─────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 2rem;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background var(--transition), box-shadow var(--transition);
    }
    nav.scrolled {
      background: rgba(44,36,22,0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    }
    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.14em;
      text-decoration: none;
      text-transform: uppercase;
      position: relative;
      z-index: 1001;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--white) !important;
      padding: 0.5rem 1.25rem;
      border-radius: 6px;
      transition: background var(--transition) !important;
    }
    .nav-cta:hover { background: var(--brown) !important; color: var(--white) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      position: relative;
      z-index: 1001;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      /* backdrop-filter pretvara nav u containing block za fixed izbornik
         i "sruši" ga u visinu trake — na mobitelu ga zato isključujemo */
      nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
      .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        padding-top: 70px;
        background: #1e160a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
      }
      .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .nav-links a { font-size: 1.25rem; letter-spacing: 0.08em; }
      body.nav-open { overflow: hidden; }
    }

    /* ── HERO ────────────────────────────────────────────────── */
    .hero {
      height: 100vh;
      min-height: 600px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(44,36,22,0.55) 0%, rgba(44,36,22,0.25) 60%, rgba(74,143,168,0.15) 100%);
    }
    .hero-content {
      position: relative;
      text-align: center;
      color: var(--white);
      padding: 0 1.5rem;
      max-width: 800px;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(200,149,42,0.9);
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.2rem, 8vw, 6rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    }
    .hero-title em { color: var(--gold); font-style: italic; }
    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      font-weight: 300;
      opacity: 0.92;
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.6;
    }
    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-decoration: none;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all var(--transition);
    }
    .btn-primary {
      background: var(--gold);
      color: var(--white);
      border-color: var(--gold);
    }
    .btn-primary:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-2px); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.7);
    }
    .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

    .hero-dots {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
    }
    .hero-dot {
      width: 11px; height: 11px;
      border-radius: 50%;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.7);
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
    }
    .hero-dot:hover { border-color: var(--white); }
    .hero-dot.active { background: var(--white); border-color: var(--white); transform: scale(1.15); }

    .scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      right: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.65);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .scroll-hint-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    /* ── SECTIONS ────────────────────────────────────────────── */
    section { padding: 6rem 1.5rem; }
    .container { max-width: 1160px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 1rem;
    }
    .section-lead {
      font-size: 1.05rem;
      color: var(--gray);
      max-width: 620px;
      line-height: 1.75;
    }

    /* ── ABOUT ───────────────────────────────────────────────── */
    .about { background: var(--white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    @media (max-width: 840px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
    .about-text p { color: var(--gray); margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.8; }
    .about-text p:last-child { margin-bottom: 0; }
    .about-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px;
      gap: 0.75rem;
    }
    .about-img {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .about-img:first-child {
      grid-row: 1 / 3;
      grid-column: 1;
    }
    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .about-img:hover img { transform: scale(1.04); }

    /* ── EXPERIENCE ──────────────────────────────────────────── */
    .experience { background: var(--cream); }
    .exp-header { margin-bottom: 3.5rem; }
    .exp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 840px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .exp-grid { grid-template-columns: 1fr; } }
    .exp-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
      overflow: hidden;
    }
    .exp-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: var(--gold);
      border-radius: 4px 0 0 4px;
    }
    .exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .exp-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 1.1rem;
      display: block;
      color: var(--gold);
    }
    .exp-icon svg { width: 100%; height: 100%; }
    .exp-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      color: var(--dark);
    }
    .exp-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

    /* ── GALLERY ─────────────────────────────────────────────── */
    .gallery { background: var(--dark); padding-bottom: 4rem; }
    .gallery .section-title { color: var(--white); }
    .gallery .section-label { color: var(--gold); }
    .gallery-header { margin-bottom: 3rem; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 0.5rem;
    }
    @media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      aspect-ratio: 4/3;
    }
    .gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
    .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(44,36,22,0);
      transition: background var(--transition);
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item:hover::after { background: rgba(44,36,22,0.25); }
    .gallery-zoom {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity var(--transition);
      z-index: 2;
      color: var(--white);
      font-size: 2rem;
    }
    .gallery-item:hover .gallery-zoom { opacity: 1; }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 8px 60px rgba(0,0,0,0.5);
    }
    .lb-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none; border: none;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      transition: background var(--transition);
    }
    .lb-close:hover { background: rgba(255,255,255,0.2); }
    .lb-prev, .lb-next {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: none; color: var(--white);
      font-size: 1.5rem;
      width: 52px; height: 52px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--transition);
    }
    .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
    .lb-prev { left: 1.5rem; }
    .lb-next { right: 1.5rem; }

    /* ── WHY US ──────────────────────────────────────────────── */
    .why { background: var(--white); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (max-width: 840px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
    .why-item {
      text-align: center;
      padding: 2rem 1rem;
      border-radius: var(--radius);
      background: var(--light-gray);
      transition: background var(--transition), transform var(--transition);
    }
    .why-item:hover { background: var(--warm); transform: translateY(-4px); }
    .why-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1.1rem;
      display: block;
      color: var(--gold);
    }
    .why-icon svg { width: 100%; height: 100%; }
    .why-item h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }
    .why-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

    /* ── SUSTAINABILITY STRIP ────────────────────────────────── */
    .sustain {
      background: linear-gradient(135deg, var(--green) 0%, #3d5e30 100%);
      padding: 4rem 1.5rem;
      color: var(--white);
    }
    .sustain-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    @media (max-width: 600px) { .sustain-inner { grid-template-columns: 1fr; } }
    .sustain-icon { width: 64px; height: 64px; flex-shrink: 0; color: rgba(255,255,255,0.9); }
    .sustain-icon svg { width: 100%; height: 100%; }
    .sustain h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      margin-bottom: 0.6rem;
    }
    .sustain p { opacity: 0.9; line-height: 1.7; font-size: 0.95rem; }

    /* ── RESERVATION FORM ────────────────────────────────────── */
    .reservation { background: var(--cream); }
    .res-wrap {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 4rem;
      align-items: start;
    }
    @media (max-width: 840px) { .res-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }
    .res-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      color: var(--dark);
      margin-bottom: 1rem;
      line-height: 1.25;
    }
    .res-info p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.75; }
    .res-contact-list { list-style: none; }
    .res-contact-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0;
      font-size: 0.92rem;
      color: var(--dark);
      border-bottom: 1px solid var(--warm);
    }
    .res-contact-list li:last-child { border-bottom: none; }
    .res-contact-list .ci { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }
    .res-contact-list .ci svg { width: 100%; height: 100%; }

    .form-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
    }
    .form-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }
    .form-card .form-sub {
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 1.75rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
    .form-group { margin-bottom: 1.1rem; }
    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }
    .form-group input,
    .form-group select {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1.5px solid var(--warm);
      border-radius: 8px;
      font-family: 'Jost', sans-serif;
      font-size: 0.92rem;
      color: var(--dark);
      background: var(--light-gray);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,149,42,0.12);
      background: var(--white);
    }
    .form-group input[type="date"] { cursor: pointer; }
    .form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b6b6b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
    .form-submit {
      width: 100%;
      padding: 1rem;
      background: var(--gold);
      color: var(--white);
      font-family: 'Jost', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 0.5rem;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 14px rgba(200,149,42,0.3);
    }
    .form-submit:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(122,92,58,0.3); }
    .form-submit:active { transform: translateY(0); }
    .form-note {
      font-size: 0.75rem;
      color: var(--gray);
      text-align: center;
      margin-top: 1rem;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
    }
    .form-success .success-icon { width: 22px; height: 22px; margin: 0 auto 1rem; color: var(--green); }
    .form-success .success-icon svg { width: 100%; height: 100%; }
    .form-success h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--green);
      margin-bottom: 0.5rem;
    }
    .form-success p { color: var(--gray); font-size: 0.9rem; }

    /* Field error state */
    .form-group input.error, .form-group select.error { border-color: #e05c5c; }
    .field-err { font-size: 0.75rem; color: #e05c5c; margin-top: 0.3rem; display: none; }
    .field-err.show { display: block; }

    /* ── FOOTER ──────────────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.8);
      padding: 4rem 1.5rem 2rem;
    }
    .footer-grid {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .footer-brand .footer-logo span { color: var(--gold); }
    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.6);
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      padding: 0.3rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      line-height: 1.5;
    }
    .footer-col li .fi { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.15em; color: var(--gold); opacity: 0.85; }
    .footer-col li .fi svg { width: 100%; height: 100%; }
    .footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color var(--transition); }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1160px;
      margin: 2rem auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
    }

    /* ── ANIMATIONS ──────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ── MISC ────────────────────────────────────────────────── */
    @media (max-width: 480px) {
      section { padding: 4rem 1rem; }
      .form-card { padding: 1.75rem 1.25rem; }
    }
