/* ══════════════════════════════════════════════════════
   LENIS SMOOTH SCROLL CONFIG
   ══════════════════════════════════════════════════════ */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


/* ══════════════════════════════════════════════════════
   1. DESIGN TOKENS
   ══════════════════════════════════════════════════════ */
:root {
  /* Paleta */
  --white: #ffffff;
  --off-white: #f9f8f6;
  --surface: #f4f2ef;
  --grey-100: #ece9e4;
  --grey-200: #d8d4ce;
  --grey-400: #a09a92;
  --grey-600: #6b6560;
  --grey-900: #1a1816;

  /* Akcente — Signature Teal + Warm Gold */
  --teal-900: #0e2d3a;
  /* Glavna tamna tirkizna */
  --teal-800: #154354;
  /* Svetlija tirkizna za kartice */
  --teal-700: #1c596f;
  /* Soft teal za hovere */
  --teal-100: #ffffff;
  /* Čista bela za maksimalni kontrast */
  --gold-500: #b8985a;
  /* dekorativni akcent */
  --gold-300: #d4ba80;
  --gold-100: #f5ecd8;

  /* Tekst */
  --text-primary: #1a1816;
  --text-secondary: #6b6560;
  --text-tertiary: #a09a92;

  /* Tipografija */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  /* 12–14px  */
  --step-0: clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
  /* 14–16px  */
  --step-1: clamp(1rem, 0.93rem + 0.35vw, 1.125rem);
  /* 16–18px  */
  --step-2: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  /* 18–22px  */
  --step-3: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  /* 24–36px  */
  --step-4: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  /* 32–56px  */
  --step-5: clamp(2.8rem, 2rem + 4vw, 5rem);
  /* 45–80px  */

  /* Razmaci */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Layout */
  --container: 1240px;
  --pad: clamp(1.5rem, 5vw, 4rem);
  --header-h: 80px;
  --section-py: clamp(5rem, 10vw, 11rem);
  /* 80–176px */

  /* Radijusi */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 9999px;

  /* Premium senke — meke, raspršene */
  --shadow-xs: 0 2px 8px rgba(16, 24, 32, .04);
  --shadow-sm: 0 4px 16px rgba(16, 24, 32, .05), 0 1px 4px rgba(16, 24, 32, .03);
  --shadow-md: 0 8px 28px rgba(16, 24, 32, .06), 0 2px 8px rgba(16, 24, 32, .04);
  --shadow-card: 0 20px 60px rgba(16, 24, 32, .07), 0 4px 16px rgba(16, 24, 32, .04);
  --shadow-float: 0 32px 80px rgba(16, 24, 32, .10), 0 8px 24px rgba(16, 24, 32, .06);

  /* Filmska krivulja — srce sistema animacija */
  --ease-film: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);

  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 700ms;
  --dur-film: 900ms;

  /* Z-index */
  --z-deco: -1;
  --z-base: 1;
  --z-card: 10;
  --z-float: 20;
  --z-menu: 900;
  --z-header: 1000;
}


/* ══════════════════════════════════════════════════════
   1.5. PRELOADER
   ══════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--teal-900);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.9s var(--ease-film);
  will-change: transform;
}

.preloader__mark {
  width: 100px;
  height: auto;
  animation: pulseMark 1.5s infinite alternate ease-in-out;
  filter: brightness(0) invert(1) !important;
}

@keyframes pulseMark {
  from {
    opacity: 0.4;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.preloader--hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   2. RESET & BASE
   ══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}


/* ══════════════════════════════════════════════════════
   3. PREMIUM TIPOGRAFIJA
   ══════════════════════════════════════════════════════ */

/* Glavne display naslove — Playfair, dramatični */
.display-title {
  font-family: var(--font-serif);
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.display-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-800);
}

.display-title--light {
  color: var(--white);
}

.display-title--light em {
  color: var(--gold-500);
}

/* Eyebrow tagovi — dramatičan letter-spacing */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s-5);
}

.eyebrow--light {
  color: var(--gold-300);
}

/* Dekorativna italic em boja */
em.em--gold {
  color: var(--gold-300) !important;
}

/* Helper */
.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop {
    display: block;
  }
}


/* ══════════════════════════════════════════════════════
   4. LAYOUT UTILITIES
   ══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: var(--section-py);
}


/* ══════════════════════════════════════════════════════
   5. DUGMAD (BUTTONS)
   ══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.9em 2.2em;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    background-color var(--dur-base) var(--ease-film),
    color var(--dur-base) var(--ease-film),
    border-color var(--dur-base) var(--ease-film),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-film),
    padding var(--dur-base) var(--ease-film),
    font-size var(--dur-base) var(--ease-film);
  will-change: transform;
}

/* Shimmer efekt na hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .55s var(--ease-film);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
}

/* Premium Button Glint (Periodic) */
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent);
  transform: skewX(-25deg);
  animation: glint-animation 8s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes glint-animation {
  0% {
    left: -100%;
  }

  15% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.btn:active {
  transform: translateY(0);
}

/* Primarno */
.btn--primary {
  background-color: var(--teal-800);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .28), 0 2px 6px rgba(0, 0, 0, .16);
}

.btn--primary:hover {
  background-color: var(--teal-700);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .34), 0 4px 10px rgba(0, 0, 0, .18);
}

/* Ghost */
.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .75);
}

/* Outline */
.btn--outline {
  background-color: transparent;
  color: var(--teal-800);
  border: 1.5px solid var(--teal-800);
}

.btn--outline:hover {
  background-color: var(--teal-100);
}

/* Veličine */
.btn--lg {
  padding: 1.05em 2.6em;
  font-size: var(--step-0);
}

.btn--full {
  width: 100%;
}


/* ══════════════════════════════════════════════════════
   6. HEADER
   ══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  /* Promenjeno sa sticky na fixed za bolju stabilnost */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  /* Mora biti veći od noise-overlay-a */
  height: var(--header-h);
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: all 0.4s var(--ease-film);
  will-change: height, padding, font-size;
}

.site-header--scrolled {
  height: 50px;
  background: var(--teal-900) !important;
  /* Signature Teal background */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(184, 152, 90, 0.1);
}

.site-header--scrolled .nav__link {
  color: #ffffff !important;
}

.site-header--scrolled .logo__img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.95 !important;
}

.site-header--scrolled .header__actions .lang-toggle {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header--scrolled .hamburger__bar {
  background-color: #ffffff !important;
}

.site-header--scrolled .header__actions .lang-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header .btn--primary {
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--dur-base), box-shadow var(--dur-base);
  will-change: padding, font-size;
  font-size: var(--step--1);
  /* Explicitna pocetna velicina da bi animacija bila glatka */
}

.site-header--scrolled .btn--primary {
  padding: 0.35em 1em;
  font-size: 0.75rem;
  /* Smanjeno da se idealno uklopi u height: 50px navbar-a */
}

/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold-500);
  width: 0%;
  z-index: 10001;
  border-radius: 0;
  transition: width 0.1s linear;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}

/* ── Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
  flex-basis: 200px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height, padding, font-size;
}

.logo:hover {
  opacity: 0.7;
}

.logo__img {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) !important;
  opacity: 0.9;
  transition: all 0.3s var(--ease-film);
}

.logo--light .logo__wordmark,
.logo--light .logo__wordmark strong {
  color: var(--white);
}

/* ── Desktop nav */
.nav {
  margin-inline: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--s-10);
  transition: gap 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link {
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: all 0.4s var(--ease-film), color 0.4s var(--ease-film);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--dur-base) var(--ease-film);
}

.nav__link:hover {
  color: var(--gold-500);
}

.nav__link:hover::after {
  width: 100%;
}

/* ── Dropdown / Mega Menu */
.nav__item {
  position: relative;
}

.nav__trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  outline: none;
}

.nav__arrow {
  transition: transform var(--dur-base) var(--ease-film);
}

.nav__trigger[aria-expanded="true"] .nav__arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--teal-900);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--gold-500);
  border-radius: 0;
  padding: var(--s-5);
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
  transition: opacity var(--dur-base) var(--ease-film),
    visibility var(--dur-base);
  box-shadow: var(--shadow-float);
  pointer-events: none;
  z-index: 100;
}

.dropdown--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown--mega {
  min-width: 580px;
  max-width: 90vw;
  left: 0;
  transform: translateY(12px);
}

.dropdown__inner {
  display: flex;
  gap: var(--s-8);
}

.dropdown__inner--simple {
  flex-direction: column;
  gap: var(--s-2);
}

.dropdown__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--step--1);
  color: var(--white);
  padding: var(--s-2) var(--s-3);
  border-radius: 0;
  white-space: nowrap;

  opacity: 0;
  transform: translateX(10px);
  transition: background var(--dur-fast),
    color var(--dur-fast),
    opacity 0.4s var(--ease-film),
    transform 0.4s var(--ease-film);
}

.dropdown--open .dropdown__item {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animacija za stavke unutar otvorene menija */
.dropdown--open .dropdown__item:nth-child(1) {
  transition-delay: 0.05s;
}

.dropdown--open .dropdown__item:nth-child(2) {
  transition-delay: 0.10s;
}

.dropdown--open .dropdown__item:nth-child(3) {
  transition-delay: 0.15s;
}

.dropdown--open .dropdown__item:nth-child(4) {
  transition-delay: 0.20s;
}

.dropdown--open .dropdown__item:nth-child(5) {
  transition-delay: 0.25s;
}

.dropdown--open .dropdown__item:nth-child(6) {
  transition-delay: 0.30s;
}

.dropdown__item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-500);
  transition-delay: 0s !important;
}

.dropdown__item-icon {
  color: var(--gold-500);
  font-size: 0.8em;
  opacity: 0.7;
}

.dropdown__item--gold {
  color: var(--gold-500);
  font-weight: 600;
}

.dropdown__item--gold:hover {
  color: var(--gold-600);
  background: rgba(184, 152, 90, 0.15);
}

/* ── Header actions */
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: var(--s-4);
}

/* ── Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4em 0.9em;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.4s var(--ease-film), border-color 0.4s var(--ease-film);
}

.lang-toggle:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}

.lang-toggle__active {
  color: #ffffff;
}

.lang-toggle__sep {
  opacity: 0.3;
}

/* ── Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast);
}

.hamburger:hover {
  background: var(--surface);
}

.hamburger__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  margin-inline: auto;
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease-film), opacity var(--dur-fast), background-color 0.4s var(--ease-film);
}

.hamburger--open .hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger--open .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger--open .hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  inset-inline: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--grey-100);
  box-shadow: var(--shadow-float);
  padding: var(--s-6) var(--pad) var(--s-10);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-film), transform var(--dur-slow) var(--ease-film);
  z-index: var(--z-menu);
}

.mobile-menu--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--step-2);
  font-weight: 400;
  color: var(--text-primary);
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--grey-100);
  transition: color var(--dur-fast);
}

.mobile-menu__link:hover {
  color: var(--teal-800);
}

.mobile-menu__cta {
  margin-top: var(--s-4);
  text-align: center;
}

/* ── Mobile Accordion */
.mobile-accordion {
  display: flex;
  flex-direction: column;
}

.mobile-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-accordion__arrow {
  transition: transform var(--dur-base) var(--ease-film);
}

.mobile-accordion--open .mobile-accordion__arrow {
  transform: rotate(180deg);
}

.mobile-accordion__panel {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-left: var(--s-4);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease-film), opacity 0.4s var(--ease-film), margin-top 0.4s var(--ease-film);
}

.mobile-accordion--open .mobile-accordion__panel {
  max-height: 500px;
  opacity: 1;
  margin-top: var(--s-3);
}

.mobile-accordion__item {
  font-size: var(--step-0);
  color: var(--grey-600);
  transition: color var(--dur-fast);
}

.mobile-accordion__item:hover {
  color: var(--teal-800);
}

.mobile-accordion__item--gold {
  color: var(--gold-500);
  font-weight: 600;
}


/* ── Premium Background Parallax Element ── */
.premium-bg-art {
  position: fixed;
  top: 50%;
  right: -5vw;
  height: 140vh;
  width: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  transform: translateY(-50%) rotate(15deg);
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 768px) {
  .premium-bg-art {
    height: 90vh;
    right: -15vw;
    opacity: 0.08;
  }
}

/* ══════════════════════════════════════════════════════
   7. HERO — Filmski, split asimetrični layout
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--teal-900);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: var(--teal-900);
  overflow: hidden;
}

/* ── Pozadinska slika / Video */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0e2d3a;
  /* fallback dok se slika učitava */
  transform-origin: center;
  will-change: transform;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Višeslojni overlay: Prozračniji gradijent za vidljivost videa */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(14, 45, 58, 0.45) 0%, rgba(14, 45, 58, 0.65) 55%, rgba(14, 45, 58, 0.85) 100%) !important;
}

/* Filmski clip-path koji lomi donju ivicu heroa */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
  z-index: var(--z-float);
}

/* ── Asimetrični layout hero sadržaja */
.hero__layout {
  position: relative;
  z-index: 100 !important;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s-12);
  padding-block: clamp(5rem, 12vw, 9rem);
}

/* Tekstualni sadržaj */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s-6);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--step-5);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff !important;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  /* Bolja čitljivost na svetlijem videu */
  margin-bottom: var(--s-6);
  display: flex;
  flex-direction: column;
}

.hero__title-line {
  display: block;
  overflow: visible !important;
  line-height: 1.2;
}

.hero__title-line .reveal-text {
  display: block !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
}

.reveal-text--visible .hero__title-line .reveal-text,
.hero__title-line.reveal-text--visible {
  transform: translateY(0);
}

.hero__title-line--italic em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-500);
}

.hero__subtitle {
  font-size: var(--step-1);
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--s-10);
  opacity: 0.95;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* ── Desni aside: lebdeći badge */
.hero__aside {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__badge {
  background: transparent;
  position: relative;
  border-radius: 0;
  padding: var(--s-3) var(--s-5);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.hero__badge-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  background: var(--gold-500);
}

/* Animira do vrha kada se hero otvori (tekst dobija klasi reveal-text--visible) */
.reveal-text--visible .hero__badge-line,
.reveal--visible .hero__badge-line {
  height: 100%;
  transition: height 2.2s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}

.hero__badge-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__badge-txt {
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  max-width: 160px;
}

/* ── Statistike — glassmorphism traka */
.hero__stats {
  position: relative;
  z-index: var(--z-card);
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: var(--s-6) var(--pad);
  margin-top: auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat__label {
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.stat__sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .14);
  flex-shrink: 0;
}

/* ── Scroll signal */
.hero__scroll-signal {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-base);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .55));
  animation: scrollPulse 2.2s var(--ease-film) infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0;
  }
}


/* ══════════════════════════════════════════════════════
   8. SERVICES — Asimetrični grid
   ══════════════════════════════════════════════════════ */
.services {
  position: relative;
  overflow: hidden;
  /* padding-block dolazi od .section utility klase — ne treba ponavljati */
}

/* Veliki dekorativni pozadinski tekst */
.section__bg-word {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, .05);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

/* ── Header servisa — split layout */
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: var(--z-base);
}

.services__header-left {
  display: flex;
  flex-direction: column;
}

.services__header-desc {
  font-size: var(--step-1);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 440px;
  margin-top: auto;
  padding-top: var(--s-4);
}

.services__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-5);
  position: relative;
  z-index: var(--z-base);
  align-items: start;
}

@media (hover: hover) and (pointer: fine) {
  .services__grid:has(.service-card:hover) .service-card:not(:hover) {
    opacity: 0.6;
    filter: blur(3px) grayscale(0.4);
    transform: scale(0.98);
  }
}

.service-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--s-8) var(--s-8) var(--s-10);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s var(--ease-film), background-color 0.3s var(--ease-film);
  will-change: transform, opacity, filter;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1.5px var(--gold-500);
  opacity: 0;
  transition: opacity 0.3s var(--ease-film);
  pointer-events: none;
}

.service-card:hover {
  transform: scale(1.02) translateY(-12px);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.service-card:hover::after {
  opacity: 1;
}

/* Featured kartica — veća, istaknuta (Midnight + Gold Glow) */
.service-card--featured {
  padding: var(--s-10) var(--s-10) var(--s-12);
  background: linear-gradient(135deg, #111620 0%, #0a0e14 100%);
  border: 1px solid var(--gold-500);
  box-shadow: 0 20px 60px rgba(184, 152, 90, 0.15);
  /* Kraljevski zlatni sjaj */
  margin-top: -20px;
}

.service-card--featured:hover {
  transform: translateY(-12px);
  border-color: var(--gold-300);
  box-shadow: 0 40px 100px rgba(184, 152, 90, 0.25);
}

.service-card--featured .service-card__num {
  color: rgba(184, 152, 90, 0.25);
}

.service-card--featured .service-card__icon {
  color: var(--gold-500);
}

.service-card--featured .service-card__title {
  color: var(--white);
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, .60);
}

.service-card--featured .service-card__link {
  color: var(--gold-500);
}

.service-card--featured .service-card__link:hover {
  color: var(--gold-300);
}

/* Redni broj */
.service-card__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: rgba(26, 24, 22, .06);
  line-height: 1;
  margin-bottom: -.5rem;
}

/* Ikonica */
.service-card__icon {
  width: 38px;
  height: 38px;
  color: var(--teal-800);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease-film);
}

.service-card:hover .service-card__icon {
  transform: translateY(-4px) scale(1.05);
  color: var(--teal-900);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Naslov */
.service-card__title {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

/* Opis */
.service-card__desc {
  font-size: var(--step-0);
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

/* Link */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-800);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--grey-100);
  transition: gap var(--dur-base) var(--ease-film), color var(--dur-fast);
}

.service-card--featured .service-card__link {
  border-color: rgba(255, 255, 255, .12);
}

.service-card__link:hover {
  gap: var(--s-5);
}

.service-card__arrow {
  transition: transform var(--dur-base) var(--ease-film);
}

.service-card__link:hover .service-card__arrow {
  transform: translateX(4px);
}


/* ══════════════════════════════════════════════════════
   9. ABOUT — Slika koja "probija" granicu sekcije
   ══════════════════════════════════════════════════════ */
.section--about {
  position: relative;
  padding-block: var(--section-py);
  /* overflow: visible je zamenjeno: vertikalno dopuštamo za sliku koja prelazi,
     ali horizontalno zaključavamo da marquee ne pušta sajt udesno */
  overflow-x: clip;
  /* 'clip' za razliku od 'hidden' ne remi brakes sticky elemenata */
  overflow-y: visible;
  z-index: var(--z-base);
}

/* Dve-tonska pozadina */
.about__bg-strip {
  position: absolute;
  inset: 0 0 45% 0;
  background: var(--off-white);
  z-index: var(--z-deco);
}

/* ── Layout */
.about__layout {
  display: grid;
  /* minmax(0, 1fr) je KLJUČAN: sprečava grid kolone da se šire
     van svog dodeljenog prostora zbog unutrašnjeg max-content sadržaja */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  position: relative;
  z-index: var(--z-base);
  min-width: 0;
}

/* ── Vizuelna kolona */
.about__visual {
  position: relative;
}

.about__img-frame {
  position: relative;
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--grey-100) 0%, var(--grey-200) 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  /* Slika "probija" dole u sledeću belu zonu */
  margin-bottom: -80px;
  position: relative;
  z-index: var(--z-card);
}

/* Osiguraj da slika uvek ispunjava about okvir */
.about__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  color: var(--grey-600);
}

.about__svg-person {
  width: 64px;
  height: 64px;
  opacity: 0.45;
}

.about__img-inner span:not(.about__img-sub) {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--grey-600);
}

.about__img-sub {
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  color: var(--grey-400);
  text-transform: uppercase;
}

/* Lebdeći citat koji prekriva ivicu slike */
.about__float-quote {
  position: absolute;
  bottom: var(--s-8);
  right: calc(var(--s-8) * -1);
  /* izlazi van okvira slike */
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  box-shadow: var(--shadow-float);
  max-width: 220px;
  border-left: 3px solid var(--gold-500);
  z-index: calc(var(--z-card) + 1);
}

.about__float-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-0);
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: var(--s-2);
}

.about__float-quote cite {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-500);
}

/* Dekorativni prsten iza slike */
.about__deco-ring {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--r-full);
  border: 1px solid var(--teal-100);
  z-index: var(--z-deco);
  pointer-events: none;
}

/* ── Tekstualna kolona */
.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding-top: var(--s-8);
  /* Grid kolona ograničena na minmax(0,1fr) */
  min-width: 0;
  max-width: 100%;
}

.about__lead {
  font-size: var(--step-2);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

.about__body {
  font-size: var(--step-1);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Akreditacije */
.about__creds {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-block: var(--s-2);
}

.cred-item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-size: var(--step-0);
  color: var(--text-secondary);
}

.cred-item__line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-500);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════
   10. GALLERY — Cinematic, asimetrični grid
   ══════════════════════════════════════════════════════ */
.gallery {
  padding-block: calc(var(--section-py) + 80px) var(--section-py);
  position: relative;
}

.gallery__header {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery__grid {
  display: grid;
  /* Leva large kartica + 2 kolone za manje kartice */
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--s-5);
  align-items: start;
}

/* Velika kartica zauzima levu kolonu i 3 reda */
.gallery-card--large {
  grid-column: 1;
  grid-row: 1 / span 3;
}

/* Manje kartice popunjavaju desne 2 kolone, 3 reda */
#gallery-item-2 {
  grid-column: 2;
  grid-row: 1;
}

#gallery-item-3 {
  grid-column: 3;
  grid-row: 1;
}

#gallery-item-4 {
  grid-column: 2;
  grid-row: 2;
}

#gallery-item-5 {
  grid-column: 3;
  grid-row: 2;
}

#gallery-item-6 {
  grid-column: 2 / span 2;
  grid-row: 3;
}

/* Kartica */
.gallery-card {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: none;
  z-index: 2;
}

/* Media container */
.gallery-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.gallery-card--large .gallery-card__media {
  aspect-ratio: 4 / 5;
}

.gallery-card:not(.gallery-card--large) .gallery-card__media {
  aspect-ratio: 16 / 9;
}

/* ── Gallery Image — CONSOLIDATED (parallax + reveal + hover)
   Koristi CSS Individual Transform Properties (scale, translate) koje se
   komponuju nezavisno. JS kontroliše 'translate' za parallax efekt via
   el.style.translate — bez ikavog uticaja na 'scale' kojim upravlja CSS
   kaskada. Nema !important-a, nema konflikata. */
.gallery-card .gallery-card__img {
  width: 100%;
  height: 120%;
  /* Ekstra visina = prostor za parallax kretanje */
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  scale: 0.95;
  /* Pre-reveal: krenuti blago zumirano */
  translate: 0 -5%;
  /* Default parallax offset; JS ažurira ovo */
  will-change: scale, translate;
  transition:
    scale 1.1s var(--ease-film),
    filter var(--dur-film) var(--ease-film);
  /* 'translate' namerno NEMA transition — parallax mora biti frame-precizan */
}

/* Reveal: scale animira na 1.0 sa 0.6s zakašnjenjem (zavesa prolazi prvo) */
.gallery-card.reveal--visible .gallery-card__img {
  scale: 1.0;
  transition:
    scale 1.2s var(--ease-film) 0.6s,
    filter var(--dur-film) var(--ease-film);
}

/* Hover: dodatni zoom, brightness se vraća, zakašnjenje resetuje */
.gallery-card:hover .gallery-card__img {
  scale: 1.06;
  filter: brightness(1);
  transition-delay: 0s;
}

/* Bottom gradient scrim */
.gallery-card__scrim {
  display: none;
}

/* Overlay info */
.gallery-card__overlay-info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-base);
}

.gallery-card__tag {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 0;
  padding: 0.5em 1em;
}

/* Placeholder boje */
.gallery-card__media--placeholder {
  background: var(--grey-100);
}

.gallery-card__media--a {
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--grey-100) 100%);
}

.gallery-card__media--b {
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--grey-100) 100%);
}

/* Body info ispod slike */
.gallery-card__body {
  padding: var(--s-4) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.gallery-card__title {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding-bottom: var(--s-3);
  position: relative;
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 0;
}

.gallery-card__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 1.5px;
  background: var(--gold-500);
}

.gallery-card__meta {
  font-size: clamp(0.7rem, 1vw, 0.75rem);
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery__footer {
  margin-top: clamp(3rem, 5vw, 4rem);
  display: flex;
  justify-content: center;
}


/* ══════════════════════════════════════════════════════
   11. TESTIMONIALS — Dramatični, minimalistički citati
   ══════════════════════════════════════════════════════ */
.testimonials {
  padding-block: var(--section-py);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

/* Dekorativni "veliki navodnik" */
.testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 3%;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 20rem);
  line-height: 1;
  color: var(--grey-100);
  user-select: none;
  pointer-events: none;
}

.testimonials__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

/* ── Slider Layout */
.slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
  padding-bottom: var(--s-4);
}

.slider-track {
  display: flex;
  gap: var(--s-5);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* ── Testimonial karta */
.tcard {
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-8) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition:
    box-shadow var(--dur-slow) var(--ease-film),
    transform var(--dur-slow) var(--ease-film);
}

@media (min-width: 768px) {
  .tcard {
    flex: 0 0 calc(50% - calc(var(--s-5) / 2));
  }
}

.tcard:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

/* ── Slider Arrows */
.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: var(--s-4);
  margin-top: var(--s-8);
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-arrow:hover {
  background: var(--teal-900);
  color: var(--gold-500);
  border-color: var(--teal-900);
  transform: translateY(-2px);
}

/* Dekorativni navodnik po kartici */
.tcard__quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold-500);
  opacity: 0.4;
  user-select: none;
  margin-bottom: -.5rem;
}

.tcard__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
}

.tcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--grey-100);
}

.tcard__stars {
  font-size: var(--step--1);
  color: var(--gold-500);
  letter-spacing: 0.1em;
}

.tcard__author {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 2px;
}

.tcard__name {
  font-size: var(--step-0);
  font-weight: 700;
  color: var(--text-primary);
}

.tcard__service {
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  color: var(--gold-500);
  font-weight: 500;
}


/* ══════════════════════════════════════════════════════
   11.5. FAQ — Premium Accordion
   ══════════════════════════════════════════════════════ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}

.faq__item {
  border-bottom: 1px solid rgba(197, 163, 104, 0.2); /* Suptilan zlatan border */
  transition: background-color 0.4s ease;
}

.faq__item:hover {
  background-color: rgba(249, 247, 242, 0.5); /* Jako bleda zlatna/bež pozadina */
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-8) var(--s-6);
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: var(--step-1);
  color: var(--text-primary);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq__item.is-open .faq__trigger {
  color: var(--gold-600);
}

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: var(--s-6);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1.5px;
  background-color: var(--gold-500);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon {
  transform: rotate(135deg); /* Rotacija za krstić ili X efekat */
}

.faq__item.is-open .faq__icon::after {
  opacity: 0; /* Sakriva vertikalnu liniju da ostane samo horizontalna */
}

.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
}

.faq__item.is-open .faq__content {
  grid-template-rows: 1fr;
}

.faq__content-inner {
  min-height: 0;
}

.faq__content p {
  padding: 0 var(--s-6) var(--s-8);
  font-size: var(--step-0);
  color: var(--grey-600);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.faq__item.is-open .faq__content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* ── Card media container — overflow:hidden drži sliku unutar okvira */
.gallery-card__media {
  overflow: hidden;
}

/* ── Display Title & Line Reveal */
.display-title {
  overflow: hidden;
}

.display-title em,
.display-title span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--visible .display-title em,
.reveal--visible .display-title span,
.reveal-text--visible.display-title em,
.reveal-text--visible.display-title span,
.reveal-text--visible .display-title em,
.reveal-text--visible .display-title span {
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════
   12. CONTACT — Full-bleed split layout
   ══════════════════════════════════════════════════════ */
.contact {
  position: relative;
}

.contact__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 700px;
}

/* Leva tamna ploča — Charcoal */
.contact__panel--dark {
  background: var(--teal-900);
  padding: var(--section-py) var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  justify-content: center;
  border-right: 1px solid rgba(184, 152, 90, 0.1);
}

/* Desna svetla ploča */
.contact__panel--light {
  background: var(--white);
  padding: var(--section-py) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__intro {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 380px;
}

/* Kontakt detalji */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}

.contact__detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 152, 90, 0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-500);
  padding: var(--s-2);
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact__detail div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact__detail strong {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.contact__detail a,
.contact__detail span {
  font-size: var(--step-0);
  color: #ffffff;
  line-height: 1.5;
  transition: color var(--dur-fast);
}

.contact__detail a:hover {
  color: var(--gold-500);
}

/* ── Forma */
.form__heading {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s-6);
  letter-spacing: -.01em;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 480px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--grey-400);
  pointer-events: none;
  transition: all 0.4s var(--ease-film);
  transform-origin: left top;
}

.form-input {
  width: 100%;
  padding: 1.6rem 1.2rem 0.6rem;
  border: none;
  border-bottom: 1.5px solid var(--grey-100);
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: var(--step-0);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur-base) var(--ease-film);
}

.form-input:focus,
.form-input:focus-visible {
  border-color: var(--grey-200);
  background: transparent;
  box-shadow: none;
}

/* Floating Label Logic */
.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label,
.form-select:focus+.form-label,
.form-select:valid+.form-label {
  transform: translateY(-0.8rem) scale(0.75);
  color: var(--gold-500);
}

/* Gold Line Reveal */
.form-line {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-film);
  transform-origin: center;
}

.form-input:focus~.form-line,
.form-select:focus~.form-line {
  transform: scaleX(1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a09a92' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.8em;
}

.form-textarea {
  min-height: 130px;
  padding-top: 2rem;
}

/* Custom File Upload Zone */
.form-group--file {
  position: relative;
  margin-top: var(--s-2);
}

.form-input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: var(--s-5);
  padding: var(--s-6) var(--s-6);
  background: var(--off-white);
  border: none;
  border-radius: var(--r-md);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  font-size: var(--step--1);
  color: var(--grey-600);
  text-align: left;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-film);
}

.file-label:hover {
  background: #fdfcfb;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.file-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease-film);
}

.file-label:hover .file-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
}

.file-icon {
  width: 24px;
  height: 24px;
}

/* Fokus state kada korisnik taba na input file */
.form-input-file:focus+.file-label,
.form-input-file:focus-visible+.file-label {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 152, 90, 0.2);
}

/* Privacy Text */
.form__privacy {
  font-size: var(--step--1);
  color: var(--grey-400);
  text-align: center;
}


/* ══════════════════════════════════════════════════════
   13. FOOTER — Premium Teal Redesign
   ══════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 152, 90, 0.15);
  background: linear-gradient(180deg, var(--teal-900) 0%, #0a212a 100%);
  margin-bottom: 0;
  padding-bottom: var(--s-10);
}

/* Ogroman bledi dekorativni natpis — Signature Teal stil */
.footer__bg-word {
  position: absolute;
  bottom: -0.15em;
  right: -0.05em;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: -0.02em;
}

/* Suptilna zlatna linija pri vrhu footera */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      var(--gold-500) 30%,
      var(--gold-300) 50%,
      var(--gold-500) 70%,
      transparent);
  opacity: 0.35;
}

.footer__top {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  z-index: 1;
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* ── Brend kolona */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.footer__tagline {
  font-size: var(--step-0);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-style: italic;
}

/* ── Naslovi kolona */
.footer__nav-label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s-6);
  opacity: 0.75;
}

/* ── Listovi linkova */
.footer__nav ul,
.footer__contact address {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* ── Footer linkovi sa zlatnom underline animacijom */
.footer__link {
  font-size: var(--step-0);
  color: #f0f0f0;
  line-height: 1.6;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: var(--s-2);
  transition: color var(--dur-base) var(--ease-film);
}

/* Zlatna linija koja se širi od leva ka desnom na hover */
.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width var(--dur-base) var(--ease-film);
}

.footer__link:hover {
  color: var(--gold-500);
}

.footer__link:hover::after {
  width: 100%;
}

/* Kompatibilnost sa starim stilovima (address p elementi bez klase) */
.footer__contact address p,
.footer__nav a:not(.footer__link) {
  font-size: var(--step-0);
  color: #f0f0f0;
  line-height: 1.6;
}

.footer__hours {
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--s-5);
  line-height: 2;
  letter-spacing: 0.02em;
}

/* ── Social ikonice */
.footer__social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-2);
}

.footer__social-link {
  --tx: 0px;
  --ty: 0px;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
  transform: translate(var(--tx), var(--ty));
  transition:
    color var(--dur-base) var(--ease-film),
    border-color var(--dur-base) var(--ease-film),
    background var(--dur-base) var(--ease-film),
    transform 0.65s var(--ease-film);
  will-change: transform;
}

.footer__social-link:hover {
  color: var(--gold-500);
  border-color: rgba(184, 152, 90, .40);
  background: rgba(184, 152, 90, .08);
  transform: translate(var(--tx), calc(var(--ty) - 3px));
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* ── Bottom bar */
.footer__bottom {
  padding-block: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════
   14. CINEMATIC SCROLL REVEAL SYSTEM
   ══════════════════════════════════════════════════════ */

/* ── Hero reveal (load animacija) */
.reveal-text {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.reveal-text--visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fallback za elemente koji su direktno reveal-text bez maske */
.reveal-text--ready {
  opacity: 0;
}

/* ── Scroll reveal: elementi koji dolaze iz dna */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(15px);
  transition:
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
  filter: blur(0);
}

/* Horizontalno "Uplovljavanje" (about i contact) */
.about__visual.reveal,
.contact__panel--dark.reveal {
  transform: translateX(-80px) rotateY(10deg);
}

.about__text.reveal,
.contact__panel--light.reveal {
  transform: translateX(80px) rotateY(-10deg);
}

.about__visual.reveal--visible,
.about__text.reveal--visible,
.contact__panel--dark.reveal--visible,
.contact__panel--light.reveal--visible {
  transform: translateX(0) rotateY(0);
}


/* ══════════════════════════════════════════════════════
   15. MEDIA QUERIES — RESPONSIVE
   ══════════════════════════════════════════════════════ */

/* ── Extra small (<480px) */
@media (max-width: 479px) {
  :root {
    --pad: 1.25rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--s-4);
  }

  .stat__sep {
    width: 60px;
    height: 1px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: var(--s-2);
    text-align: center;
  }
}

/* ── Mobile (<768px) */
@media (max-width: 767px) {

  /* Header */
  .nav,
  .header__actions .btn--primary {
    display: none;
  }

  .header__actions .lang-toggle {
    display: flex;
    position: relative;
    z-index: 100;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero */
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    display: none;
  }

  .hero::after {
    height: 48px;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    margin-top: 0;
  }

  .services__header {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }

  /* About */
  .about__layout {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }

  .about__img-placeholder {
    margin-bottom: 0;
  }

  .about__float-quote {
    position: static;
    max-width: 100%;
    margin-top: var(--s-4);
  }

  .about__deco-ring {
    display: none;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--large {
    grid-row: span 1;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__panel--dark,
  .contact__panel--light {
    padding-block: var(--s-16);
  }

  /* Footer */
  .footer__top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s-12);
  }

  .footer__brand {
    align-items: center;
  }

  .footer__brand .logo {
    margin-inline: auto;
  }

  /* Image Responsiveness Fix */
  .hero__img,
  .about__visual img,
  .pshow-hero img,
  .section img {
    max-height: 80vh;
    width: auto;
    object-fit: contain;
    margin-inline: auto;
    display: block;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__nav ul,
  .footer__contact address {
    align-items: center;
    padding: 0;
  }

  .footer__hours {
    text-align: center;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: var(--s-4);
    text-align: center;
  }
}

/* ── Laptop / Small Desktops (≤1366px) */
@media (max-width: 1366px) {
  .nav__list {
    gap: var(--s-6);
  }

  .header__actions {
    gap: var(--s-2);
  }
}

/* ── Tablet (768px–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

  .services__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .service-card--featured {
    grid-column: span 2;
    margin-top: 0;
  }

  .about__float-quote {
    right: var(--s-4);
    max-width: 180px;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card--large {
    grid-row: span 1;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* ── Desktop (≥768px): prikaži lang toggle i CTA, sakrij hamburger i mobile menu */
@media (min-width: 768px) {

  .header__actions .lang-toggle,
  .header__actions .btn--primary {
    display: flex;
  }

  .hamburger,
  .mobile-menu {
    display: none !important;
  }
}

/* ── Large (≥1280px) — ekstra whitespace */
@media (min-width: 1280px) {
  :root {
    --section-py: 10rem;
  }
}

/* ── Reduced motion (a11y) */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-text--ready {
    opacity: 1;
    transform: none;
  }

  .noise-overlay {
    display: none;
  }

  .marquee-track {
    animation-play-state: paused;
  }

  .gallery-card__curtain {
    transform: scaleX(0) !important;
  }
}


/* ══════════════════════════════════════════════════════
   EFFECT 1: FILM GRAIN NOISE OVERLAY
   Analogni šum koji oživljava ekran
   ══════════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  /* Jedan nivo ispod headera */
  pointer-events: none;
  opacity: 0.02;
  /* Smanjena providnost da manje "bode" oči */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  /* Isključujemo animaciju šuma ako procesor ne može da izdrži */
  animation: none;
}

@keyframes noiseShift {
  0% {
    background-position: 0px 0px;
  }

  20% {
    background-position: -70px 30px;
  }

  40% {
    background-position: 50px -40px;
  }

  60% {
    background-position: -30px 60px;
  }

  80% {
    background-position: 80px -20px;
  }

  100% {
    background-position: -10px 50px;
  }
}


/* ══════════════════════════════════════════════════════
   EFFECT 2: MAGNETIC BUTTONS
   CSS custom props --tx/--ty vozi JS
   ══════════════════════════════════════════════════════ */
.btn--magnetic {
  --tx: 0px;
  --ty: 0px;
  transform: translate(var(--tx), var(--ty));
  will-change: transform;
}

/* Tokom praćenja miša: instant respons */
.btn--magnetic.btn--pulling {
  transition:
    transform 0.07s linear,
    box-shadow var(--dur-base) var(--ease-film),
    background-color var(--dur-base) var(--ease-film),
    color var(--dur-base) var(--ease-film);
}

/* Povratak u centar: elastično */
.btn--magnetic:not(.btn--pulling) {
  transition:
    transform 0.65s var(--ease-film),
    box-shadow var(--dur-base) var(--ease-film),
    background-color var(--dur-base) var(--ease-film),
    color var(--dur-base) var(--ease-film);
}

/* Zaspisuje hover translateY da ne remeti magnet */
.btn--magnetic:hover {
  transform: translate(var(--tx, 0px), var(--ty, 0px));
}


/* ══════════════════════════════════════════════════════
   EFFECT 3: CURTAIN REVEAL za Gallery slike
   ══════════════════════════════════════════════════════ */

/* Reveal/Hover stanja za gallery slike — konsolidovana u jednom bloku
   koristeći CSS Individual Transforms (scale + translate).
   Vidi: .gallery-card .gallery-card__img (~linija 1715)
   !important ovde više nije potreban. */

/* Zavesa: pokriva sliku teal bojom */
.gallery-card__curtain {
  position: absolute;
  inset: 0;
  background: var(--teal-900);
  z-index: 4;
  transform-origin: right center;
  transform: scaleX(1);
  /* Tranzicija zavese s desna prema levoj strani */
  transition: transform 0.85s var(--ease-film);
}

/* Kad kartica postane vidljiva: zavesa se 'svlači' */
.gallery-card.reveal--visible .gallery-card__curtain {
  transform: scaleX(0);
  transition: transform 0.85s var(--ease-film) 0.1s;
}


/* ══════════════════════════════════════════════════════
   EFFECT 4: INFINITE MARQUEE — Akreditacije
   Dve kopije, beskončna petlja s desna na levo
   ══════════════════════════════════════════════════════ */
.marquee-wrap {
  /* POPRAVKA KORENA PROBLEMA:
     'contain: paint' stvara izolovani rendering kontekst.
     Browser ne može da računa scrollWidth elemenata unutar njega,
     što sprečava da track (width: max-content) gu ra stranicu udesno. */
  contain: paint;
  overflow: hidden;
  position: relative;
  padding-block: var(--s-4);
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  margin-block: var(--s-5);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Meki fade na ivicama */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  /* Koristimo var(--white) jer je about pozadina bela u donjem delu */
  background: linear-gradient(to right, var(--white), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  width: max-content;
  animation: marqueeRoll 22s linear infinite;
}

.marquee-item {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  white-space: nowrap;
}

.marquee-sep {
  color: var(--gold-500);
  font-size: 1rem;
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes marqueeRoll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════
/* ── Phone Floating Button (Zlatno/Tamno) */
.phone-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--gold-500);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-900);
  box-shadow: var(--shadow-float);
  transition: transform 0.4s var(--ease-film), background 0.4s var(--ease-film);
}

.phone-float svg {
  width: 28px;
  height: 28px;
}

.phone-float:hover {
  transform: scale(1.1) translateY(-5px);
  background: var(--gold-300);
  color: var(--teal-900);
}

/* ── WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-float);
  transition: transform 0.4s var(--ease-film), background 0.4s var(--ease-film);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background: #1EBE5D;
  color: #fff;
}


/* ══════════════════════════════════════════════════════
   P1. CUSTOM CURSOR — zlatni prsten + tačka
   ══════════════════════════════════════════════════════ */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-500);
    pointer-events: none;
    z-index: 1000000;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-film),
      height 0.35s var(--ease-film),
      background 0.35s var(--ease-film),
      border-color 0.35s var(--ease-film),
      opacity 0.3s;
    will-change: left, top;
  }

  .cursor--visible {
    opacity: 1;
  }

  .cursor--hover {
    width: 66px;
    height: 66px;
    background: rgba(184, 152, 90, .08);
  }

  .cursor--click {
    width: 22px;
    height: 22px;
  }

  .cursor--hidden {
    opacity: 0 !important;
  }

  .cursor--context {
    width: 80px;
    height: 80px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    mix-blend-mode: difference;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: 0.14em;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .cursor--context::after {
    content: attr(data-text);
  }

  .cursor.cursor--context~.cursor-dot {
    opacity: 0 !important;
  }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--gold-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000001;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    will-change: left, top;
  }

  .cursor-dot--visible {
    opacity: 1;
  }
}


/* ══════════════════════════════════════════════════════
   P1.5 RESULTS SLIDER CONTAINER
   ══════════════════════════════════════════════════════ */
.pshow-results__slider-wrap {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 768px) {
  .pshow-results__slider-wrap {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

/* ══════════════════════════════════════════════════════
   P2. BEFORE / AFTER DRAG SLIDER
   ══════════════════════════════════════════════════════ */
.ba-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--ba-split, 50%));
}

.ba-img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-label {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .65);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4em .9em;
  z-index: 3;
}

.ba-label--after {
  left: auto;
  right: var(--s-4);
  color: var(--gold-400, var(--gold-500));
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-split, 50%);
  width: 2px;
  background: var(--gold-500);
  z-index: 9;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 14px rgba(184, 152, 90, .55);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--ba-split, 50%);
  z-index: 10;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-900);
  box-shadow: 0 4px 24px rgba(184, 152, 90, .55), 0 0 0 4px rgba(184, 152, 90, .2);
  cursor: ew-resize;
  transition: transform .15s var(--ease-out), box-shadow .3s var(--ease-film);
}

.ba-handle:hover,
.ba-slider--dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 32px rgba(184, 152, 90, .7), 0 0 0 6px rgba(184, 152, 90, .15);
}

.ba-handle svg {
  width: 22px;
  height: 22px;
}

.ba-tip {
  position: absolute;
  top: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .6);
  font-size: var(--step--1);
  letter-spacing: .08em;
  padding: .35em .85em;
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
  transition: opacity .5s;
}

.ba-slider--dragging .ba-tip,
.ba-tip--hidden {
  opacity: 0;
}


/* ══════════════════════════════════════════════════════
   P3. STICKY MOBILE CTA BAR
   ══════════════════════════════════════════════════════ */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  box-shadow: 0 -4px 24px rgba(16, 24, 32, .10);
  padding: var(--s-3) var(--pad);
  gap: var(--s-3);
  align-items: center;
  transform: translateY(100%);
  transition: transform .5s var(--ease-film);
}

.sticky-cta-bar--visible {
  transform: translateY(0);
}

.sticky-cta-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  flex: 1;
  padding: .85em 1.2em;
  border-radius: var(--r-full);
  border: 1.5px solid var(--teal-800);
  color: var(--teal-800);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.sticky-cta-bar__call:hover {
  background: var(--teal-100);
}

.sticky-cta-bar__call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sticky-cta-bar__book {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
  padding: .85em 1.2em;
  border-radius: var(--r-full);
  background: var(--teal-800);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.sticky-cta-bar__book:hover {
  background: var(--teal-700);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .sticky-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}


/* ══════════════════════════════════════════════════════
   P4. GOOGLE REVIEWS SEKCIJA
   ══════════════════════════════════════════════════════ */
.google-reviews {
  padding-block: var(--section-py);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.google-reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.g-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-10);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--s-10);
}

.g-badge__logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 700;
  color: #5f6368;
  letter-spacing: .01em;
}

.g-badge__logo svg {
  width: 22px;
  height: 22px;
}

.g-badge__score {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.g-badge__stars {
  color: #FBBC05;
  font-size: var(--step-1);
  letter-spacing: .06em;
}

.g-badge__count {
  font-size: var(--step--1);
  color: var(--text-tertiary);
}

.google-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: start;
}

@media (max-width: 1023px) {
  .google-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .google-reviews__grid {
    grid-template-columns: 1fr;
  }
}

.g-review {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease-film),
    box-shadow var(--dur-slow) var(--ease-film);
}

.g-review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.g-review__header {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.g-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.g-review__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.g-review__name {
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--text-primary);
}

.g-review__date {
  font-size: var(--step--1);
  color: var(--text-tertiary);
}

.g-review__stars {
  color: #FBBC05;
  font-size: var(--step-0);
  letter-spacing: .05em;
}

.g-review__text {
  font-size: var(--step-0);
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.g-review__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: .35;
}

.g-review__foot svg {
  width: 20px;
  height: 20px;
  color: #5f6368;
}

.google-reviews__cta {
  margin-top: clamp(3rem, 5vw, 4rem);
  display: flex;
  justify-content: center;
}


/* ══════════════════════════════════════════════════════
   P5. BOOKING MODAL — 3 koraka
   ══════════════════════════════════════════════════════ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: grid;
  place-items: center;
  padding: var(--s-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-film), visibility .4s;
}

.booking-modal--open {
  opacity: 1;
  visibility: visible;
}

.booking-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.92);
  /* Midnight Navy Overlay */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-modal__dialog {
  position: relative;
  background: var(--teal-800);
  /* Navy Dialog */
  border: 1px solid rgba(184, 152, 90, 0.2);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: translateY(24px) scale(.97);
  transition: transform .5s var(--ease-film);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-500) transparent;
}

.booking-modal--open .booking-modal__dialog {
  transform: translateY(0) scale(1);
}

.booking-modal__top {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
  padding: var(--s-10) var(--s-8) var(--s-8);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
}

.booking-modal__close {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.booking-modal__close:hover {
  background: rgba(255, 255, 255, .2);
  color: var(--white);
}

.booking-modal__close svg {
  width: 18px;
  height: 18px;
}

.booking-modal__eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--s-3);
}

.booking-modal__title {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.booking-modal__desc {
  margin-top: var(--s-2);
  font-size: var(--step-0);
  color: rgba(255, 255, 255, .45);
}

.bm-steps-dots {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
}

.bm-dot {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .25);
  transition: all .35s var(--ease-film);
  width: 7px;
}

.bm-dot.active {
  width: 24px;
  background: var(--gold-500);
}

.bm-dot.done {
  background: rgba(255, 255, 255, .5);
}

.booking-modal__body {
  padding: var(--s-8);
}

.bm-step {
  display: none;
  flex-direction: column;
  gap: var(--s-5);
  animation: bmStepIn .35s var(--ease-film) both;
}

.bm-step--active {
  display: flex;
}

@keyframes bmStepIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bm-label {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.service-pill {
  padding: .65em 1.3em;
  border-radius: var(--r-full);
  border: 1.5px solid var(--grey-200);
  background: var(--off-white);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .3s var(--ease-film);
}

.service-pill:hover {
  border-color: var(--teal-800);
  color: var(--teal-800);
}

.service-pill--selected {
  background: var(--teal-800);
  border-color: var(--teal-800);
  color: var(--white);
}

.bm-date-input {
  width: 100%;
  padding: .9em 1.2em;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  color: var(--text-primary);
  background: var(--off-white);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}

.bm-date-input:focus {
  border-color: var(--teal-800);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

@media (max-width: 480px) {
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

.time-slot {
  padding: .75em .5em;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--grey-200);
  background: var(--off-white);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  cursor: pointer;
  transition: all .3s var(--ease-film);
}

.time-slot:hover:not(.time-slot--taken) {
  border-color: var(--teal-800);
  color: var(--teal-800);
}

.time-slot--selected {
  background: var(--teal-800);
  border-color: var(--teal-800);
  color: var(--white);
}

.time-slot--taken {
  opacity: .3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.bm-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.bm-form-label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.bm-form-input {
  width: 100%;
  padding: .9em 1.2em;
  border: 1.5px solid var(--grey-100);
  border-radius: var(--r-md);
  background: var(--off-white);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
}

.bm-form-input:focus {
  border-color: var(--teal-800);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
}

.bm-summary {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.bm-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
}

.bm-summary-row dt {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.bm-summary-row dd {
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--text-primary);
}

.bm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--grey-100);
}

.bm-back {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: .5em;
  transition: color var(--dur-fast);
  background: none;
  border: none;
  font-family: var(--font-sans);
}

.bm-back:hover {
  color: var(--text-primary);
}

.bm-next {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: .85em 2em;
  background: var(--teal-800);
  color: var(--white);
  border: none;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-fast);
}

.bm-next:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
}

.bm-next svg {
  width: 16px;
  height: 16px;
}

.bm-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
  padding: var(--s-10) var(--s-4);
}

.bm-success__icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.bm-success__icon svg {
  width: 38px;
  height: 38px;
}

.bm-success__title {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 600;
  color: var(--text-primary);
}

.bm-success__text {
  font-size: var(--step-0);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   GALLERY RESPONSIVNESS FIX
   ══════════════════════════════════════════════════════ */

/* Resetovanje fiksne mreže za tablete */
@media (max-width: 1023px) {

  .gallery-card--large,
  #gallery-item-2,
  #gallery-item-3,
  #gallery-item-4,
  #gallery-item-5,
  #gallery-item-6 {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* Pretvaranje mreže u kolonu za mobilne telefone */
@media (max-width: 767px) {
  .gallery__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
  }
}

/* ======================================================
   PREMIUM GALLERY GRID
   ====================================================== */
.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  display: block;
  text-decoration: none;
}

.gallery-item__img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay svg {
  width: 42px;
  height: 42px;
  color: var(--white);
  transition: transform 0.4s var(--ease-film);
}

.gallery-item:hover .gallery-item__overlay svg {
  transform: scale(1.1);
}

/* ======================================================
   ABOUT PAGE - GOLDEN SIGNATURE
   ====================================================== */
.about__signature {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  font-style: italic;
  color: #D4AF37;
  line-height: 1.6;
  text-align: center;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  margin-bottom: var(--s-10);
}

.about__signature-name {
  font-family: var(--font-serif);
  font-style: italic;
  color: #D4AF37;
  text-align: center;
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  margin-top: var(--s-6);
  margin-bottom: var(--s-20);
}

/* ======================================================
   GOOGLE MAPS INTEGRATION
   ====================================================== */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  filter: grayscale(0.2) contrast(1.1);
  border: 1px solid var(--border-color, #eee);
  margin-top: var(--s-10);
}

.map-container iframe {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px !important;
  }

  .phone-float {
    width: 60px !important;
    height: 60px !important;
    bottom: 95px !important;
    right: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .phone-float svg {
    width: 28px !important;
    height: 28px !important;
  }

  .whatsapp-float {
    width: 60px !important;
    height: 60px !important;
    bottom: 20px !important;
    right: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .whatsapp-float svg {
    width: 32px !important;
    height: 32px !important;

    max-width: 100% !important;
  }
}