/* =========================================================
   Salon ljepote Maja - Mlinovi
   Boje izvedene iz loga: rose gold, peach, cream, warm brown
   ========================================================= */

:root {
  --rose-gold: #c9a07c;
  --rose-gold-dark: #a87f5b;
  --peach: #e8b6a3;
  --peach-soft: #f4d8cc;
  --cream: #faf6f1;
  --cream-2: #f3ebe0;
  --ivory: #fffaf4;
  --brown: #3a2a1e;
  --brown-soft: #6b5545;
  --gold: #b08862;
  --line: rgba(201, 160, 124, 0.25);
  --shadow: 0 20px 50px -20px rgba(58, 42, 30, 0.25);
  --shadow-sm: 0 6px 18px -8px rgba(58, 42, 30, 0.2);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Pinyon Script', cursive;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   404 ERROR PAGE
   ========================================================= */
.error-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 182, 163, 0.18), transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(201, 160, 124, 0.14), transparent 50%),
    var(--cream-2);
  position: relative;
}
.error-page__inner { text-align: center; max-width: 640px; }
.error-page__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(7rem, 22vw, 14rem);
  line-height: 0.85;
  margin: 0 0 24px;
  background: linear-gradient(180deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.error-page__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin: 0 0 18px;
}
.error-page__lead {
  font-size: 1.1rem;
  color: var(--brown-soft);
  margin: 0 0 36px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.error-page__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.error-page__cta .btn--ghost {
  background: #fff;
  color: var(--brown);
  border-color: var(--brown);
}
.error-page__cta .btn--ghost:hover {
  background: var(--brown);
  color: #fff;
}
.error-page__hint {
  font-size: 0.92rem;
  color: var(--brown-soft);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin: 0;
}
.error-page__hint a {
  color: var(--rose-gold-dark);
  font-weight: 500;
  margin: 0 4px;
}
.error-page__hint a:hover { text-decoration: underline; }
@media (max-width: 480px) {
  .error-page__cta { flex-direction: column; }
  .error-page__cta .btn { width: 100%; }
}

/* =========================================================
   LIGHTBOX (galerija)
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 14, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lightbox__caption {
  color: var(--peach-soft);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox__close { top: 20px; right: 20px; font-size: 1.8rem; }
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--rose-gold); border-color: var(--rose-gold); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.1); }
@media (max-width: 600px) {
  .lightbox { padding: 4vh 3vw; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* =========================================================
   OPENING STATUS BADGE (live indikator)
   ========================================================= */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
}
.open-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.open-status.is-open {
  background: rgba(46, 160, 67, 0.12);
  color: #2ea043;
}
.open-status.is-open::before {
  background: #2ea043;
  box-shadow: 0 0 0 4px rgba(46, 160, 67, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
.open-status.is-closed {
  background: rgba(207, 84, 71, 0.12);
  color: #cf5447;
}
.open-status.is-closed::before { background: #cf5447; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 160, 67, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(46, 160, 67, 0.08); }
}

/* Back-to-top floating gumb */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px -8px rgba(58, 42, 30, 0.45);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
  cursor: pointer;
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.to-top:hover { background: var(--rose-gold-dark); transform: translateY(-3px) scale(1.05); }
.to-top svg { width: 20px; height: 20px; }
@media (max-width: 480px) {
  .to-top { width: 44px; height: 44px; bottom: max(16px, env(safe-area-inset-bottom)); }
}

/* Skip-to-content link za screen readere i tipkovničke korisnike.
   "Visually hidden" pattern: dok nije fokusiran, element je 1x1px clipan na
   0x0 - fizički nepostojeći pa ga rubber-band overscroll (iOS/macOS) ne moze
   ovuci u vidljivo podrucje. */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 20px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  z-index: 1000;
  background: var(--brown);
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.92rem;
  outline: 2px solid var(--rose-gold);
  outline-offset: 2px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(201, 160, 124, 0.18);
  /* Fiksna širina - sprječava horizontalno skrolanje na svim uređajima */
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(15px, 0.92rem + 0.18vw, 17px);
  line-height: 1.7;
  color: var(--brown);
  background: var(--ivory);
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video, iframe { max-width: 100%; display: block; }
img, picture { height: auto; }
iframe { border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 24px);
  width: 100%;
}

/* Safety: nijedna sekcija ne smije prouzročiti horizontalni scroll */
section, header, footer { max-width: 100%; overflow-x: clip; }

/* Typography */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--brown);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 5.75rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; font-weight: 600; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose-gold);
  font-size: 1.15em;
  line-height: 1.25;
  word-spacing: 0.15em;
  letter-spacing: 0.01em;
  padding: 0 0.08em;
}

h1 .script {
  display: inline-block;
  margin-top: 0.18em;
}
h2 .script {
  display: block;
  font-size: 0.72em;
  margin-top: 0.1em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin: 0 0 16px;
}

.lead { font-size: 1.08rem; color: var(--brown-soft); }

/* Sprječava "siroticu" - jednu riječ samu na zadnjoj liniji teksta */
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
/* Kratki paragrafi unutar journey-ja: balansiraj linije da završe ravnomjerno */
.journey__step p { text-wrap: balance; hyphens: auto; -webkit-hyphens: auto; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head__sub { color: var(--brown-soft); margin-top: 12px; }

.muted { color: var(--brown-soft); font-size: 0.92rem; }

section { padding: 110px 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(168, 127, 91, 0.5);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(168, 127, 91, 0.6);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--brown);
  border-color: #fff;
}
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(58, 42, 30, 0.06);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.nav__brand img {
  width: 52px; height: 52px;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.nav__brand:hover img { transform: rotate(-4deg) scale(1.05); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--rose-gold);
}
.nav__brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 4px;
}
.nav.is-scrolled .nav__brand-sub,
.nav.is-scrolled .nav__brand-name { }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  color: var(--brown);
}
.nav.is-scrolled .nav__menu a { color: var(--brown); }
.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:not(.btn):hover {
  color: var(--rose-gold);
}
.nav__menu a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* default (before scroll) menu colors for hero over dark */
body:not(.nav-scrolled) .nav:not(.is-scrolled) .nav__menu a:not(.btn) { color: #fff; }
body:not(.nav-scrolled) .nav:not(.is-scrolled) .nav__brand-sub { color: #fff; }
body:not(.nav-scrolled) .nav:not(.is-scrolled) .nav__brand-name { color: #fff; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px; height: 32px;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* Mobile-only elementi - skriveni na desktopu */
.nav__menu-footer { display: none; }
.nav__backdrop { display: none; }
.nav__toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all 0.35s var(--ease);
}
.nav.is-scrolled .nav__toggle span { background: var(--brown); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 140px 0 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(58,42,30,0.45) 0%, rgba(58,42,30,0.25) 50%, rgba(58,42,30,0.7) 100%),
    radial-gradient(ellipse at center, rgba(201,160,124,0.15), transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--peach-soft);
}
.hero__title {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__title .script {
  color: var(--peach-soft);
  display: inline-block;
  margin-top: 0.05em;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 600px;
  margin: 28px auto 40px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  display: flex; justify-content: center;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: #fff;
  border-radius: 3px;
  margin-top: 8px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* =========================================================
   POČETNA (Hero + Benefits)
   ========================================================= */
.home { padding: 0; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 182, 163, 0.18), transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(201, 160, 124, 0.14), transparent 50%),
    var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.benefits__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  margin: 0 0 64px;
}
.benefits__eyebrow-text {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--rose-gold);
  line-height: 1;
}
.benefits__eyebrow-line {
  flex: 0 0 auto;
  width: clamp(60px, 14vw, 140px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose-gold), transparent);
  opacity: 0.65;
}
.benefits__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
  align-items: start;
}
.benefit-block {
  position: relative;
  text-align: center;
  padding: 8px 14px;
}
.benefit-block + .benefit-block::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.benefit-block__figure {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  transition: transform .55s var(--ease);
}
.benefit-block__figure::before {
  content: "";
  position: absolute;
  inset: -18px -28px -10px;
  background: radial-gradient(ellipse at center, rgba(232, 182, 163, 0.25) 0%, rgba(232, 182, 163, 0) 65%);
  z-index: 0;
  opacity: 0.7;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.benefit-block:hover .benefit-block__figure { transform: translateY(-3px); }
.benefit-block:hover .benefit-block__figure::before { opacity: 1; transform: scale(1.08); }
.benefit-block__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 6.2rem;
  line-height: 0.9;
  color: var(--rose-gold);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(180deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: filter .55s var(--ease);
}
.benefit-block__num em {
  font-size: 2.6rem;
  font-style: italic;
  margin-left: 4px;
  letter-spacing: 0;
  font-weight: 400;
}
.benefit-block:hover .benefit-block__num {
  filter: brightness(0.92);
}
.benefit-block__unit {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.benefit-block__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 14px;
  color: var(--brown);
  line-height: 1.2;
}
.benefit-block__rule {
  display: inline-block;
  width: 80px;
  height: 8px;
  margin: 0 auto 16px;
  color: var(--rose-gold);
  transition: color .5s var(--ease), transform .55s var(--ease);
}
.benefit-block__rule svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.benefit-block__rule svg line {
  stroke: currentColor;
  stroke-width: 1;
}
.benefit-block__rule svg path {
  fill: currentColor;
}
.benefit-block:hover .benefit-block__rule {
  color: var(--rose-gold-dark);
  transform: scaleX(1.15);
}
.benefit-block__body p {
  color: var(--brown-soft);
  margin: 0 auto;
  max-width: 30ch;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* =========================================================
   ABOUT (O nama)
   ========================================================= */
.about {
  background: var(--ivory);
}
.about > .container > * + * { margin-top: 120px; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.about__image-accent {
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.5;
}
.about__text h2 { margin-top: 0; }
.about__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__list li {
  position: relative;
  padding-left: 28px;
  color: var(--brown-soft);
}
.about__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose-gold);
  font-size: 0.9rem;
}

/* =========================================================
   TEAM (unutar O nama)
   ========================================================= */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding-bottom: 24px;
  transition: all 0.5s var(--ease);
  border: 1px solid var(--line);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.team-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.team-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.team-card:hover .team-card__img img { transform: scale(1.06); }
.team-card h3 {
  margin: 20px 0 4px;
  font-size: 1.2rem;
  color: var(--rose-gold-dark);
}
.team-card__role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin: 0 0 10px;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--brown-soft);
  padding: 0 18px;
  margin: 0;
  line-height: 1.55;
}

/* Trust (higijena) uvučen u O nama - bez dodatnog paddinga sekcije */
.about .trust { background: transparent; padding: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--ivory);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.service__img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(58,42,30,0.2) 100%);
  z-index: 1;
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service:hover .service__img img {
  transform: scale(1.08);
}
.service__body {
  padding: 28px 28px 32px;
}
.service__body h3 { margin-bottom: 8px; }
.service__body p { color: var(--brown-soft); margin: 0 0 18px; }
.service__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rose-gold-dark);
  letter-spacing: 0.04em;
  transition: gap 0.3s var(--ease);
}
.service__link:hover { color: var(--brown); }

/* =========================================================
   PULL / QUOTE (unutar Usluge)
   ========================================================= */
.pull {
  margin-top: 80px;
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-2), var(--peach-soft));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pull::before, .pull::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  filter: blur(60px);
}
.pull::before { top: -80px; left: -60px; }
.pull::after { bottom: -100px; right: -40px; }
.pull__quote {
  position: relative; z-index: 1;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--brown);
  line-height: 1.3;
  margin: 0;
}
.pull__sub {
  position: relative; z-index: 1;
  margin-top: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brown-soft);
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing { background: var(--ivory); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--peach));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.price-card:hover::before { transform: scaleX(1); }
.price-card h3 {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--rose-gold-dark);
}
.price-card ul { display: flex; flex-direction: column; gap: 14px; }
.price-card li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--brown-soft);
}
.price-card li span:first-child { white-space: nowrap; }
.price-card .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-5px);
}
.price-card strong {
  color: var(--brown);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}
.pricing__note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--brown-soft);
  font-style: italic;
}

/* =========================================================
   TRUST
   ========================================================= */
.trust {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.trust__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.trust__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.trust__points > div {
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.trust__points strong {
  display: block;
  color: var(--rose-gold-dark);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.trust__points span {
  font-size: 0.85rem;
  color: var(--brown-soft);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--ivory); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: stretch;
}
.contact__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.contact__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 32px;
  flex: 1;
  align-items: start;
  transition: background 0.4s var(--ease);
}
.contact__row + .contact__row {
  border-top: 1px solid var(--line);
}
.contact__row:hover {
  background: var(--cream);
}
.contact__row-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  color: var(--rose-gold-dark);
  flex: 0 0 auto;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.contact__row-icon svg { width: 22px; height: 22px; }
.contact__row:hover .contact__row-icon {
  background: var(--rose-gold);
  color: #fff;
}
.contact__row-body { min-width: 0; }
.contact__row-body h3 {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.contact__row-body p { margin: 0 0 4px; color: var(--brown); font-size: 1.02rem; line-height: 1.55; }
.contact__row-body a { color: var(--brown); font-weight: 500; }
.contact__row-body a:hover { color: var(--rose-gold-dark); }
.contact__row-body p.muted { color: var(--brown-soft); font-size: 0.9rem; margin-top: 2px; }
.contact__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--rose-gold-dark) !important;
  font-weight: 500;
}
.socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.35s var(--ease);
  border: 1px solid var(--line);
}
.social svg { width: 18px; height: 18px; color: var(--rose-gold-dark); }
.social:hover {
  background: linear-gradient(135deg, var(--rose-gold), var(--peach));
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
}
.social:hover svg { color: #fff; }

.hours { display: flex; flex-direction: column; gap: 8px; }
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
}
.hours strong { color: var(--brown); font-family: var(--font-serif); font-size: 1.02rem; }
.hours span { color: var(--brown-soft); }

.contact__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact__map iframe { display: block; width: 100%; height: 100%; min-height: 520px; position: relative; z-index: 1; }
/* Fallback ako iframe ne učita (npr. odbijena privola za kolačiće) */
.contact__map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-2), var(--ivory));
  color: var(--brown-soft);
}
.contact__map-fallback p { margin: 0; font-size: 0.95rem; }
.contact__map iframe[src] ~ .contact__map-fallback { display: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 72px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__col { min-width: 0; }
.footer__col--brand { padding-right: 16px; }
.footer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 18px;
}
.footer__brand-name {
  font-family: var(--font-script);
  color: var(--peach-soft);
  font-size: 2.2rem;
  line-height: 1;
}
.footer__brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 10px;
  opacity: 0.85;
}
.footer__tagline {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.72;
  max-width: 32ch;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--peach-soft);
  transition: all 0.35s var(--ease);
}
.footer__socials a:hover {
  background: var(--rose-gold);
  color: #fff;
  transform: translateY(-3px);
}
.footer__socials svg { width: 18px; height: 18px; }

.footer__heading {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach-soft);
  font-family: var(--font-sans);
  font-weight: 600;
  margin: 0 0 20px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
}
.footer__list li > span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.footer__list a,
.footer__list strong {
  color: var(--cream);
  opacity: 0.92;
  font-weight: 400;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.footer__list a:hover { color: var(--peach-soft); opacity: 1; }

.footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  gap: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}
.footer__hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.footer__hours span { opacity: 0.7; }
.footer__hours strong {
  color: var(--peach-soft);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 0.92rem;
  opacity: 0.82;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease), padding 0.3s var(--ease);
  position: relative;
}
.footer__nav a:hover {
  opacity: 1;
  color: var(--peach-soft);
  padding-left: 6px;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding: 24px 0 28px;
}
.footer__company {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
  opacity: 0.6;
  max-width: 70ch;
}
.footer__company strong { color: var(--peach-soft); font-weight: 500; opacity: 0.95; }
.footer__legal-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__legal-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__legal-nav a:hover { opacity: 1; color: var(--peach-soft); }

@media (max-width: 1000px) {
  .footer { padding-top: 56px; }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 40px;
  }
  .footer__col--brand { grid-column: 1 / -1; padding-right: 0; }
  .footer__legal { justify-content: center; text-align: center; }
  .footer__company { max-width: none; }
  .footer__legal-nav { justify-content: center; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   ANIMATIONS (scroll reveal)
   ========================================================= */
[data-anim] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-anim="fade"] { }
[data-anim="fade-up"] { transform: translateY(36px); }
[data-anim="fade-right"] { transform: translateX(-36px); }
[data-anim="fade-left"] { transform: translateX(36px); }

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  section { padding: 80px 0; }
  .about > .container > * + * { margin-top: 80px; }
  .about__grid,
  .trust__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image img,
  .trust__image img { height: 420px; }
  .services__grid,
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { padding: 64px 0 72px; }
  .benefits__eyebrow { gap: 14px; margin-bottom: 40px; }
  .benefits__eyebrow-text { font-size: 2rem; }
  .benefits__eyebrow-line { width: clamp(40px, 18vw, 90px); }
  .benefits__strip { grid-template-columns: 1fr; gap: 44px; }
  .benefit-block + .benefit-block::before {
    left: 10%; right: 10%; top: -22px; bottom: auto;
    width: 80%; height: 1px;
    background: linear-gradient(to right, transparent, var(--line), transparent);
  }
  .benefit-block__num { font-size: 5rem; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .services__grid,
  .pricing__grid,
  .contact__info,
  .trust__points,
  .team__grid {
    grid-template-columns: 1fr;
  }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .pull { padding: 48px 24px; }

  .nav__toggle { display: flex; position: relative; z-index: 210; }

  /* Backdrop iza menija — bez backdrop-filter (skup za GPU + jagodice na slabijim uređajima) */
  .nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(58, 42, 30, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s linear;
    z-index: 195;
    will-change: opacity;
  }
  .nav__backdrop.is-visible { opacity: 1; pointer-events: auto; }

  /* Drawer panel — solid bg, dekoracija u ::before sloju (ne re-paint pri sliznju) */
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    max-width: 100%;
    background: var(--ivory);
    box-shadow: -16px 0 40px -16px rgba(58, 42, 30, 0.25);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 96px 36px max(36px, env(safe-area-inset-bottom)) 36px;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.34, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 200;
    will-change: transform;
    /* GPU layer hint */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .nav__menu.is-open { transform: translate3d(0, 0, 0); }

  /* Dekorativni ornament + suptilan glow u ::before pseudo elementu */
  .nav__menu::before {
    content: "";
    position: absolute;
    top: 76px;
    left: 36px;
    right: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose-gold), transparent);
    opacity: 0.4;
    pointer-events: none;
  }
  .nav__menu::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(232, 182, 163, 0.35), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }

  .nav__menu a {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--brown) !important;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s linear 0.15s, color 0.3s var(--ease), padding 0.3s var(--ease);
  }
  .nav__menu a::after { display: none; }
  .nav__menu a:hover,
  .nav__menu a:focus-visible {
    color: var(--rose-gold-dark) !important;
    padding-left: 8px;
  }
  .nav__menu a.btn {
    margin-top: 24px;
    border-bottom: none;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 24px !important;
    border-radius: 999px;
  }
  .nav__menu a.btn:hover { padding-left: 24px !important; }

  /* Linkovi se pojavljuju nakon što drawer dođe do kraja - jeftiniji opacity prijelaz */
  .nav__menu.is-open a { opacity: 1; }

  /* Footer drawera: kontakt info pri dnu */
  .nav__menu-footer {
    display: block;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px dashed var(--line);
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s linear 0.25s;
  }
  .nav__menu.is-open .nav__menu-footer { opacity: 1; }
  .nav__menu-footer p {
    margin: 0 0 4px;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .nav__menu-footer a {
    display: inline-block !important;
    border: none !important;
    padding: 0 !important;
    font-family: var(--font-sans) !important;
    font-size: 1.05rem !important;
    color: var(--brown) !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hamburger animacija (X kad je otvoreno) — koristi postojeću is-open klasu */
  .nav__toggle.is-open span { background: var(--brown) !important; }

  /* Zaključavanje skrolanja - i html i body. Bez height/position:fixed,
     pa scroll pozicija ostaje tamo gdje je bila. Touch-action: none
     potpuno blokira gesture skrolanja na pozadini (iOS fix). */
  html.menu-open,
  body.menu-open {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
  }
  /* Drawer i dalje smije skrolati vertikalno (ako je sadržaj duži) */
  body.menu-open .nav__menu { touch-action: pan-y; overflow-x: hidden; }
  /* Tijekom animacije isključi backdrop-filter na navu (skupo za GPU) */
  body.menu-open .nav { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }

  .hero { padding-top: 110px; }
  .hero__title { font-size: clamp(2.5rem, 13vw, 4.5rem); }

  .contact__map,
  .contact__map iframe { min-height: 340px; }
}

/* =========================================================
   COOKIE BANNER + MODAL
   ========================================================= */
.cc-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -15px rgba(58,42,30,0.35);
  padding: 22px 26px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  max-width: 1100px;
  margin: 0 auto;
}
.cc-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cc-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cc-banner__text h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--rose-gold-dark);
}
.cc-banner__text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--brown-soft);
  line-height: 1.5;
}
.cc-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cc-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--rose-gold-dark);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}
.cc-link:hover { color: var(--brown); }

.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.cc-btn--primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: #fff;
}
.cc-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(168,127,91,0.5); }
.cc-btn--ghost {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--line);
}
.cc-btn--ghost:hover { background: #fff; border-color: var(--rose-gold); }

/* Modal */
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.cc-modal.is-open { display: block; }
.cc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 30, 0.55);
  backdrop-filter: blur(4px);
  animation: ccFade 0.3s var(--ease);
}
.cc-modal__dialog {
  position: relative;
  max-width: 560px;
  margin: 5vh auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(58,42,30,0.5);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: ccSlideUp 0.4s var(--ease);
}
@keyframes ccFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ccSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.cc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.cc-modal__head h3 {
  margin: 0;
  color: var(--rose-gold-dark);
  font-size: 1.3rem;
}
.cc-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brown);
  transition: background 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-modal__close:hover { background: var(--peach-soft); }
.cc-modal__body {
  padding: 20px 26px 10px;
  overflow-y: auto;
}
.cc-modal__body > p {
  color: var(--brown-soft);
  font-size: 0.92rem;
  margin: 0 0 18px;
}
.cc-cats { display: flex; flex-direction: column; gap: 12px; }
.cc-cat {
  display: block;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.3s var(--ease);
}
.cc-cat:hover { border-color: var(--rose-gold); }
.cc-cat__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.cc-cat__head strong {
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.cc-cat p {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--brown-soft);
  line-height: 1.5;
}
.cc-cat input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.cc-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  background: #d6cbbd;
  border-radius: 999px;
  transition: background 0.3s var(--ease);
}
.cc-switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cc-cat input:checked + .cc-switch {
  background: var(--rose-gold);
}
.cc-cat input:checked + .cc-switch::after {
  transform: translateX(18px);
}
.cc-cat input:disabled + .cc-switch {
  opacity: 0.6;
  cursor: not-allowed;
}
.cc-modal__foot {
  display: flex;
  gap: 10px;
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Maps placeholder while consent missing */
iframe[data-consent]:not([src]) {
  background: var(--cream-2);
  display: block;
}

@media (max-width: 720px) {
  .cc-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .cc-banner__inner { grid-template-columns: 1fr; gap: 16px; }
  .cc-banner__actions { flex-direction: column; }
  .cc-banner__actions .cc-btn { width: 100%; }
  .cc-modal__dialog { margin: 2vh 10px; max-height: 96vh; }
  .cc-modal__foot { flex-direction: column-reverse; }
  .cc-modal__foot .cc-btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
}

/* =========================================================
   PAGE HERO (o-nama, cjenik)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: 80px;
}
.page-hero--short { min-height: 44vh; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease) forwards;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58, 42, 30, 0.55) 0%, rgba(168, 127, 91, 0.45) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 60px 24px;
}
.page-hero__content .hero__title { color: #fff; }
.page-hero__content .hero__sub { color: var(--peach-soft); max-width: 640px; margin: 14px auto 0; }
.page-hero__content .hero__eyebrow { color: var(--peach-soft); }

/* Active nav link on inner pages */
.nav__menu a.is-active {
  color: var(--rose-gold) !important;
}
.nav__menu a.is-active::after { transform: scaleX(1) !important; background: var(--rose-gold); }

/* About teaser */
.about--teaser { padding: 100px 0; }
.about--teaser .about__grid { gap: 60px; }
.about__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }

/* Pricing teaser */
.pricing-teaser {
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 182, 163, 0.18), transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(201, 160, 124, 0.14), transparent 50%),
    var(--cream-2);
  text-align: center;
}
.pricing-teaser__inner {
  max-width: 680px;
  margin: 0 auto;
}
.pricing-teaser p {
  color: var(--brown-soft);
  font-size: 1.05rem;
  margin: 10px 0 26px;
}
.pricing-teaser__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pricing-teaser .btn--ghost {
  background: #fff;
  color: var(--brown);
  border-color: var(--brown);
}
.pricing-teaser .btn--ghost:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

/* Pricing page CTA */
.pricing__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  width: 100%;
  text-align: center;
}
.pricing__cta .btn--ghost {
  background: #fff;
  color: var(--brown);
  border-color: var(--brown);
}
.pricing__cta .btn--ghost:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

/* Call button - ikona + "Nazovi" + broj telefona, vidljivo na svim ekranima */
.btn--call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
}
.btn--call svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.btn--call span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 500;
  white-space: nowrap;
}
.btn--call strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .pricing__cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .pricing__cta .btn { width: 100%; max-width: 360px; justify-content: center; }
  .btn--call { padding: 14px 22px; }
  .btn--call span { white-space: normal; }
}
@media (max-width: 380px) {
  .btn--call { gap: 8px; padding: 13px 16px; font-size: 0.86rem; }
  .btn--call svg { width: 16px; height: 16px; }
}

/* Full team card on o-nama page */
.team-card--full { padding: 18px; }
.team-card--full .team-card__bio {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--brown);
}

/* Team quote block */
.team__note {
  margin-top: 70px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.team__note-quote {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--rose-gold-dark);
  line-height: 1.45;
  margin: 0;
}
.team__note-sign {
  margin-top: 14px;
  font-family: var(--font-script);
  color: var(--rose-gold);
  font-size: 1.8rem;
}

/* =========================================================
   O NAMA - STORY PAGE REDESIGN
   ========================================================= */

/* STORY narrative section */
.story {
  padding: 110px 0 90px;
  background: var(--ivory);
}
.story__wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

/* Slika - kvadratni editorial frame s decorativnim offset okvirom */
.story__media {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.story__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.8s var(--ease);
}
.story__media:hover img { transform: scale(1.015); }

/* Offset okvir iza slike (rose-gold) */
.story__media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

/* Pill badge "25 godina zajedno" u gornjem lijevom kutu slike */
.story__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.story__badge-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--rose-gold-dark);
  letter-spacing: -0.02em;
}
.story__badge-lbl {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
  line-height: 1.25;
}

/* Tekst kolona - editorial struktura */
.story__deck {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--rose-gold-dark);
  margin: 22px 0 28px;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--rose-gold);
}
.story__body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--brown);
  margin: 0 0 18px;
}
.story__body:last-child { margin-bottom: 0; }
.story__text h2 { margin-top: 6px; }
.story__lead {
  font-size: 1.08rem;
  color: var(--brown);
  margin: 16px 0 24px;
}
.story__dropcap {
  float: left;
  font-family: var(--font-serif);
  font-size: 4.2rem;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--rose-gold);
  font-weight: 600;
}
.story__timeline {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  position: relative;
}
.story__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--rose-gold), var(--peach-soft));
}
.story__timeline li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 22px;
}
.story__timeline li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--rose-gold);
  box-shadow: 0 0 0 4px var(--ivory);
}
.story__year {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.story__timeline p { margin: 0; color: var(--brown-soft); }

/* HORIZONTAL JOURNEY (ispod hero story) */
.story__journey {
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1px dashed var(--line);
  position: relative;
}
.journey__eyebrow {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  font-weight: 600;
  margin: 0 0 48px;
}

.journey {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Horizontalna linija koja se animira - crta se slijeva udesno */
.journey::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--rose-gold) 0%,
    var(--peach) 50%,
    var(--rose-gold-dark) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  z-index: 0;
}
.story__journey.is-visible .journey::before {
  transform: scaleX(1);
}

.journey__step {
  position: relative;
  text-align: center;
  padding-top: 58px;
  z-index: 1;
}

/* Krug u sredini iznad teksta */
.journey__dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.6);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--rose-gold);
  box-shadow: 0 0 0 6px var(--ivory);
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.journey__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--rose-gold);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s var(--ease) 0.3s;
}
.journey__step.is-visible .journey__dot {
  transform: translateX(-50%) scale(1);
  background: var(--rose-gold);
}
.journey__step.is-visible .journey__dot::after {
  opacity: 0.6;
  transform: scale(1);
}

.journey__year {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.journey__step h3 {
  font-size: 1.3rem;
  color: var(--brown);
  margin: 0 0 12px;
}
.journey__step p {
  color: var(--brown-soft);
  font-size: 0.95rem;
  margin: 0 auto;
  line-height: 1.65;
  max-width: 300px;
}

/* Zadnji korak istaknut (Danas) */
.journey__step:last-child .journey__dot {
  border-color: var(--rose-gold-dark);
}
.journey__step:last-child.is-visible .journey__dot {
  background: var(--rose-gold-dark);
  box-shadow: 0 0 0 6px var(--ivory), 0 0 24px rgba(201, 160, 124, 0.5);
}

/* Mobile - vertikalni timeline */
@media (max-width: 820px) {
  .journey {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Glavna linija na .journey se ne koristi na mobilnom - svaki step ima svoju */
  .journey::before { display: none; }

  /* Vertikalna linija od jednog dota do sljedećeg - posljednji step nema liniju */
  .journey__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: -36px;
    left: 14px;
    width: 2px;
    background: linear-gradient(180deg,
      var(--rose-gold) 0%,
      var(--peach) 50%,
      var(--rose-gold-dark) 100%);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .journey__step.is-visible:not(:last-child)::before { transform: scaleY(1); }

  .journey__step {
    text-align: left;
    padding-top: 0;
    padding-left: 54px;
  }
  .journey__dot {
    top: 2px;
    left: 14px;
  }
  .journey__step p { margin: 0; max-width: none; }
}

/* RITUAL - horizontal rail, progressive reveal */
.ritual {
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 182, 163, 0.18), transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(201, 160, 124, 0.14), transparent 50%),
    var(--cream-2);
  position: relative;
  overflow: hidden;
}
.ritual::before,
.ritual::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,124,0.08), transparent 70%);
  pointer-events: none;
}
.ritual::before { top: -120px; left: -100px; }
.ritual::after  { bottom: -140px; right: -120px; }

.ritual__head { margin-bottom: 70px; }

.ritual__rail {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* progressive horizontal line behind the nodes */
.ritual__line {
  position: absolute;
  top: 36px; /* aligned to node center */
  left: calc(100% / 8);  /* start under first node */
  right: calc(100% / 8); /* end under last node */
  height: 2px;
  background: rgba(201,160,124,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.ritual__line-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    var(--rose-gold) 0%,
    var(--rose-gold-dark) 50%,
    var(--rose-gold) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.8s cubic-bezier(.65,.05,.36,1);
}
.ritual__rail.is-visible .ritual__line-fill { transform: scaleX(1); }

.ritual__step {
  position: relative;
  text-align: center;
  padding: 0 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.ritual__step.is-visible { opacity: 1; transform: translateY(0); }

.ritual__node {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(201,160,124,0.35);
  display: grid;
  place-items: center;
  color: var(--rose-gold-dark);
  box-shadow: 0 6px 22px rgba(168,127,91,0.10);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s var(--ease);
  z-index: 2;
}
.ritual__node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(201,160,124,0.45);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.ritual__node::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,124,0.55), transparent 70%);
  opacity: 0;
  transition: opacity .9s var(--ease);
  z-index: -1;
}
.ritual__step.is-visible .ritual__node::before { opacity: 1; transform: scale(1); }
.ritual__step.is-visible .ritual__node::after  { opacity: .7; animation: ritualPulse 3.2s ease-out infinite; }

@keyframes ritualPulse {
  0%   { transform: scale(.9); opacity: .55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.ritual__roman {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--rose-gold-dark);
}
.ritual__step:hover .ritual__node {
  transform: translateY(-4px);
  border-color: var(--rose-gold);
  box-shadow: 0 14px 32px rgba(168,127,91,0.20);
}

.ritual__body { padding: 0 8px; }
.ritual__kicker {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin: 0 0 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.ritual__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  margin: 14px 0 10px;
  letter-spacing: -0.005em;
}
.ritual__body p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--brown-soft);
  margin: 0;
}

/* TEAM STORY - magazine alternating rows */
.team-story {
  padding: 110px 0;
  background: var(--ivory);
}
.ts-member {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.ts-member:first-of-type {
  margin-top: 50px;
  padding-top: 0;
  border-top: none;
}
.ts-member--reverse .ts-member__img { order: 2; }
.ts-member--reverse .ts-member__text { order: 1; }
.ts-member__img {
  position: relative;
}
.ts-member__img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.ts-member__img::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--rose-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.ts-member--reverse .ts-member__img::after {
  inset: 14px 14px -14px -14px;
}
.ts-member__tag {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  font-weight: 600;
  margin: 0 0 10px;
}
.ts-member__text h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 6px;
  color: var(--brown);
}
.ts-member__role {
  color: var(--brown-soft);
  font-size: 0.98rem;
  font-style: italic;
  margin: 0 0 18px;
}
.ts-member__text > p:not(.ts-member__tag):not(.ts-member__role) {
  color: var(--brown);
  line-height: 1.75;
  margin: 0 0 18px;
}
.ts-member__quote {
  margin: 20px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--rose-gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  line-height: 1.55;
}

/* SPACE gallery */
.space {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.space__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 60px;
}
.space__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: default;
  grid-column: span 2;
}
.space__item--tall { grid-row: span 2; }
.space__item--wide { grid-column: span 3; }
.space__item--wide-lg { grid-column: span 4; }
.space__item--portrait { grid-column: span 2; grid-row: span 2; }

/* Decorative inner frame */
.space__item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 250, 244, 0.35);
  border-radius: calc(var(--radius) - 4px);
  z-index: 2;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.space__item.is-revealed::before {
  opacity: 1;
  transform: scale(1);
}
@media (hover: hover) {
  .space__item:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

.space__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.space__item.is-revealed img {
  transform: scale(1.08);
  filter: brightness(0.78);
}
@media (hover: hover) {
  .space__item:hover img {
    transform: scale(1.08);
    filter: brightness(0.78);
  }
}

/* Parallax na "Naš prostor" — samo desktop, aktivira se JS-om */
.space.parallax-on .space__item img {
  transform: translate3d(0, var(--py, 0px), 0) scale(1.14);
  transition: transform 0.15s linear, filter 0.6s var(--ease);
  will-change: transform;
}
.space.parallax-on .space__item:hover img {
  transform: translate3d(0, var(--py, 0px), 0) scale(1.22);
  filter: brightness(0.78);
}

/* View Transitions API — graceful crossfade između stranica */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.35s;
  animation-timing-function: var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}
.space__item { cursor: pointer; -webkit-tap-highlight-color: transparent; }

/* Permanent gradient + caption */
.space__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(58, 42, 30, 0.55) 55%, rgba(58, 42, 30, 0.85) 100%);
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: padding 0.5s var(--ease);
}
.space__item figcaption::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose-gold);
  margin-bottom: 8px;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.6s var(--ease) 0.1s, width 0.6s var(--ease);
}
.space__item.is-revealed figcaption::before { width: 56px; }
@media (hover: hover) {
  .space__item:hover figcaption::before { width: 56px; }
}
.space__item figcaption .ttl {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.space__item figcaption .sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.78);
  font-weight: 500;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
}
.space__item.is-revealed figcaption .sub {
  max-height: 30px;
  opacity: 1;
}
@media (hover: hover) {
  .space__item:hover figcaption .sub {
    max-height: 30px;
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .space__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .space__item { grid-column: span 2; }
  .space__item--wide { grid-column: span 2; }
  .space__item--wide-lg { grid-column: span 4; }
  .space__item--portrait { grid-column: span 2; grid-row: span 2; }
}

/* CLOSING */
.closing {
  padding: 100px 0 120px;
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 182, 163, 0.18), transparent 45%),
    radial-gradient(circle at 88% 100%, rgba(201, 160, 124, 0.14), transparent 50%),
    var(--cream-2);
  text-align: center;
}
.closing__quote {
  max-width: 780px;
  margin: 0 auto 40px;
}
.closing__quote p.script {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.4;
  color: var(--rose-gold-dark);
  margin: 0;
}
.closing__sign {
  margin-top: 18px;
  font-family: var(--font-script);
  color: var(--rose-gold);
  font-size: 2.2rem;
}
.closing__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.closing__cta .btn--ghost {
  background: #fff;
  color: var(--brown);
  border-color: var(--brown);
}
.closing__cta .btn--ghost:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

/* Responsive */
@media (max-width: 1000px) {
  .story__wrap { grid-template-columns: 1fr; gap: 50px; }
  .story__media::before { inset: 14px -14px -14px 14px; }
  .story__badge-num { font-size: 1.6rem; }
  .story__badge-lbl { font-size: 0.6rem; }
  .ritual__rail { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .ritual__line { display: none; }
  .ts-member,
  .ts-member--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ts-member--reverse .ts-member__img { order: 0; }
  .ts-member--reverse .ts-member__text { order: 0; }
  .ts-member__img::after,
  .ts-member--reverse .ts-member__img::after { inset: auto; display: none; }
  .space__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .space__item { grid-column: span 1; }
  .space__item--tall { grid-row: auto; }
  .space__item--wide { grid-column: span 2; }
  .space__item--wide-lg { grid-column: span 2; }
  .space__item--portrait { grid-column: span 1; grid-row: span 2; }
}
@media (max-width: 560px) {
  .ritual__rail { grid-template-columns: 1fr; gap: 50px; }
  .space__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .space__item { grid-column: auto; }
  .space__item--wide { grid-column: auto; }
  .space__item--wide-lg { grid-column: auto; }
  .story__dropcap { font-size: 3.2rem; }
}

/* =========================================================
   LEGAL PAGES (impresum, privatnost, kolacici)
   ========================================================= */
.legal-body { background: var(--ivory); }
.legal-body .nav { background: rgba(255, 250, 244, 0.96); box-shadow: 0 2px 20px -10px rgba(58, 42, 30, 0.2); }

.legal {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  min-height: 70vh;
}
.legal__inner {
  max-width: 860px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.legal__inner h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  margin: 6px 0 18px;
}
.legal__inner h2 {
  font-size: 1.55rem;
  color: var(--brown);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal__inner h3 {
  font-size: 1.12rem;
  color: var(--rose-gold-dark);
  margin-top: 22px;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.legal__inner p,
.legal__inner li { color: var(--brown); font-size: 0.98rem; }
.legal__lead { font-size: 1.08rem; color: var(--brown-soft); margin-bottom: 8px; }
.legal__inner a { color: var(--rose-gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal__inner a:hover { color: var(--rose-gold); }

.legal__section { margin-top: 28px; }
.legal__section:first-of-type { margin-top: 16px; }

.legal__ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 14px;
}
.legal__ul li { margin-bottom: 6px; }

.legal__toc {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 24px 0 8px;
}
.legal__toc strong {
  display: block;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  margin-bottom: 10px;
}
.legal__toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 32px;
  font-size: 0.95rem;
  list-style: decimal;
}
.legal__toc li { break-inside: avoid; margin-bottom: 4px; }

.legal__dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px 24px;
  margin: 10px 0 0;
  padding: 0;
}
.legal__dl dt {
  font-weight: 600;
  color: var(--brown-soft);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.legal__dl dd {
  margin: 0;
  color: var(--brown);
  font-size: 0.98rem;
}

.legal__tablewrap { overflow-x: auto; margin: 12px 0; }
.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  margin: 10px 0;
}
.legal__table th,
.legal__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal__table thead th {
  background: var(--cream);
  font-weight: 600;
  color: var(--brown);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal__table code {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.85rem;
  background: var(--cream-2);
  padding: 2px 6px;
  border-radius: 4px;
}

.legal__meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--brown-soft);
  font-style: italic;
}

@media (max-width: 720px) {
  .legal { padding: 100px 0 60px; }
  .legal__inner { padding: 32px 24px; border-radius: var(--radius); }
  .legal__dl { grid-template-columns: 1fr; gap: 2px 0; }
  .legal__dl dt { margin-top: 10px; }
  .legal__toc ol { columns: 1; }
  .legal__table { font-size: 0.85rem; }
  .legal__table th, .legal__table td { padding: 8px 10px; }
}

/* =========================================================
   GLOBAL RESPONSIVE OPTIMIZATION
   Tablet (≤1024) · Phone (≤720) · Small phone (≤480) · iOS safe-area
   ========================================================= */

/* Min-width:0 safety on grid/flex children to prevent overflow */
.contact__row-body,
.benefit-block__body,
.footer__col,
.services__grid > *,
.pricing__grid > *,
.about__text { min-width: 0; }

/* Buttons: min touch target on mobile */
.btn { min-height: 44px; touch-action: manipulation; }

/* Inputs / selects keep 16px on iOS to prevent zoom */
input, select, textarea { font-size: max(16px, 1rem); }

/* ----- Tablet large (≤1100px) ----- */
@media (max-width: 1100px) {
  :root { --maxw: 100%; }
  .section-head { margin-bottom: 48px; }
  .footer__top { gap: 40px 32px; }
}

/* ----- Tablet (≤1000px) — additions to existing block ----- */
@media (max-width: 1000px) {
  .contact__grid { gap: 32px; }
  .contact__map,
  .contact__map iframe { min-height: 380px; }
  .contact__row { padding: 22px 24px; gap: 16px; }
  .contact__row-icon { width: 44px; height: 44px; }
  .contact__row-icon svg { width: 20px; height: 20px; }
  .closing { padding: 80px 0 90px; }
  .closing__sign { font-size: 1.9rem; }
  .ritual { padding: 80px 0 90px; }
  .ritual__head { margin-bottom: 50px; }
}

/* ----- Phone (≤720px) — additions to existing block ----- */
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  h3 { font-size: 1.15rem; }
  .lead { font-size: 1rem; }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: stretch;
    padding: clamp(88px, 10vh, 120px) 0 max(28px, env(safe-area-inset-bottom));
  }
  .hero__bg img { object-position: center 42%; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(58,42,30,0.55) 0%, rgba(58,42,30,0.2) 45%, rgba(58,42,30,0.15) 65%, rgba(58,42,30,0.55) 100%);
  }
  .hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .hero__eyebrow { margin-bottom: 20px; font-size: 0.76rem; letter-spacing: 0.32em; }
  .hero__title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero__sub {
    margin: 22px auto 0;
    max-width: 28ch;
    font-size: 1.02rem;
    line-height: 1.6;
  }
  .hero__cta {
    margin-top: auto;
    padding-top: 32px;
    gap: 14px;
    width: 100%;
    flex-direction: column;
  }
  .hero__cta .btn { width: 100%; min-width: 0; }

  .benefits { padding: 56px 0 60px; }
  .benefits__eyebrow-text { font-size: 1.7rem; }
  .benefit-block__num { font-size: 4.4rem; }
  .benefit-block__num em { font-size: 2rem; }
  .benefit-block__body h3 { font-size: 1.3rem; }

  .contact__grid { gap: 24px; }
  .contact__row { padding: 20px; gap: 14px; grid-template-columns: 44px 1fr; }
  .contact__row-icon { width: 40px; height: 40px; }
  .contact__row-icon svg { width: 18px; height: 18px; }
  .contact__row-body p { font-size: 0.96rem; }
  .contact__map,
  .contact__map iframe { min-height: 320px; }
  .socials { flex-direction: column; align-items: stretch; }
  .social { width: 100%; justify-content: center; }

  .pricing-teaser { padding: 64px 0; }
  .pricing-teaser__cta { flex-direction: column; }
  .pricing-teaser__cta .btn { width: 100%; }
  .closing__cta { flex-direction: column; }
  .closing__cta .btn { width: 100%; }

  .footer { padding-top: 48px; }
  .footer__top { padding-bottom: 32px; gap: 32px; }
  .footer__legal { padding: 22px 0 26px; }
  .footer__company { font-size: 0.74rem; }
  .footer__legal-nav a { font-size: 0.74rem; }
  .footer__legal-nav { gap: 16px; }
}

/* ----- Small phone (≤480px) ----- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 56px 0; }
  h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  h2 { font-size: clamp(1.55rem, 7vw, 2rem); }

  .btn { padding: 12px 22px; font-size: 0.92rem; width: auto; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__title { letter-spacing: -0.015em; }

  .benefits { padding: 48px 0 52px; }
  .benefits__eyebrow { gap: 10px; margin-bottom: 32px; }
  .benefits__eyebrow-line { width: 36px; }
  .benefits__eyebrow-text { font-size: 1.5rem; }
  .benefit-block__num { font-size: 3.8rem; }
  .benefit-block__num em { font-size: 1.7rem; }
  .benefit-block__figure::before { inset: -10px -16px -6px; }

  .contact__panel { border-radius: var(--radius); }
  .contact__row { padding: 18px 16px; grid-template-columns: 40px 1fr; gap: 12px; }
  .contact__row-icon { width: 36px; height: 36px; }
  .contact__row-icon svg { width: 16px; height: 16px; }
  .contact__row-body h3 { font-size: 0.72rem; letter-spacing: 0.22em; margin-bottom: 8px; }
  .contact__map,
  .contact__map iframe { min-height: 280px; border-radius: var(--radius); }
  .hours li { font-size: 0.88rem; }

  .closing__quote p.script { font-size: 1.4rem; }
  .closing__sign { font-size: 1.6rem; }

  .footer { padding-top: 40px; }
  .footer__brand-name { font-size: 1.9rem; }
  .footer__tagline { font-size: 0.88rem; }
  .footer__heading { font-size: 0.7rem; letter-spacing: 0.22em; margin-bottom: 16px; }
  .footer__list li { font-size: 0.88rem; }
  .footer__hours li { font-size: 0.88rem; }
  .footer__nav a { font-size: 0.88rem; }
  .footer__legal { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__legal-nav { width: 100%; justify-content: flex-start; }
}

/* ----- Tiny phones (≤360px) ----- */
@media (max-width: 360px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 14px; }
  .btn { padding: 11px 18px; font-size: 0.88rem; }
  .benefit-block__num { font-size: 3.3rem; }
}

/* ----- iOS safe-area (notch / home bar) ----- */
@supports (padding: max(0px)) {
  .container {
    padding-left: max(clamp(16px, 3.5vw, 24px), env(safe-area-inset-left));
    padding-right: max(clamp(16px, 3.5vw, 24px), env(safe-area-inset-right));
  }
  .cc-banner { bottom: max(20px, env(safe-area-inset-bottom)); }
}

/* ----- Pointer / hover capability ----- */
@media (hover: none) {
  /* Disable hover-only transforms on touch devices to avoid sticky states */
  .benefit-block:hover .benefit-block__figure,
  .contact__row:hover,
  .pricing-teaser .btn--ghost:hover,
  .closing__cta .btn--ghost:hover { transform: none; }
}

/* ----- Landscape phones (short height) ----- */
@media (max-height: 480px) and (orientation: landscape) {
  .hero { min-height: 100vh; padding-top: 90px; }
  .nav__menu { justify-content: flex-start !important; padding-top: 90px; gap: 20px !important; overflow-y: auto; }
}

/* ----- Print ----- */
@media print {
  .nav, .footer, .cc-banner, .cc-modal, .hero__scroll { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  section { padding: 20px 0 !important; page-break-inside: avoid; }
}
