/* ============================================================
   GROOVES & COLORS — redizajn
   Editorijalni premium dizajn · ljubičasta #7b1578 · zlatna #ffc20f
   ============================================================ */

:root {
  --ink: #14120e;
  --ink-soft: #1e1b15;
  --paper: #f4efe6;
  --paper-deep: #e9e1d3;
  --purple: #b0894f;
  --purple-soft: #c9a96a;
  --gold: #c9a96a;
  --line-dark: rgba(20, 18, 14, 0.14);
  --line-light: rgba(244, 239, 230, 0.16);
  --text-dark: #23201a;
  --text-dark-muted: rgba(35, 32, 26, 0.66);
  --text-light: #f4efe6;
  --text-light-muted: rgba(244, 239, 230, 0.64);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 92px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--ink); }

/* ---------- typography ---------- */

.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--purple);
}
.kicker::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.on-dark .kicker { color: var(--gold); }

.display-1, .display-2, .display-3 {
  font-family: var(--font-display);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.display-1 { font-size: clamp(3rem, 8.5vw, 7rem); }
.display-2 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.display-3 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.12; }
.display-1 em, .display-2 em, .display-3 em, .lede em {
  font-style: italic;
  font-weight: 340;
  color: var(--purple);
}
.on-dark .display-1 em, .on-dark .display-2 em, .on-dark .display-3 em { color: var(--gold); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-dark-muted);
  max-width: 34em;
}
.on-dark .lede { color: var(--text-light-muted); }

/* ---------- layout ---------- */

.wrap { width: min(1280px, calc(100% - 3rem)); margin-inline: auto; }
.wrap-wide { width: min(1520px, calc(100% - 3rem)); margin-inline: auto; }

.section { padding-block: clamp(5rem, 11vw, 9.5rem); position: relative; }
.section-dark {
  background: var(--ink);
  color: var(--text-light);
}
.section-purple {
  background: linear-gradient(160deg, #1a1710 0%, #2a2114 55%, #1a1710 100%);
  color: var(--text-light);
}

/* zrnata tekstura na tamnim sekcijama */
.section-dark::after, .section-purple::after, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}
.section-dark > *, .section-purple > *, .hero > * { position: relative; z-index: 2; }

.section-head { max-width: 780px; margin-bottom: clamp(2.8rem, 6vw, 4.6rem); }
.section-head .kicker { margin-bottom: 1.4rem; }
.section-head .lede { margin-top: 1.4rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .kicker::before { display: none; }

/* ---------- gumbi ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 2.1rem;
  border-radius: 100px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--purple);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--paper); border-color: var(--purple); }
.btn:hover::before { transform: translateY(0); }
.btn .arr { transition: transform 0.45s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }

.btn-solid { background: var(--purple); border-color: var(--purple); color: var(--paper); }
.btn-solid::before { background: var(--gold); }
.btn-solid:hover { color: var(--ink); border-color: var(--gold); }

.on-dark .btn:not(.btn-solid)::before { background: var(--gold); }
.on-dark .btn:not(.btn-solid):hover { color: var(--ink); border-color: var(--gold); }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  padding-bottom: 0.4rem;
  position: relative;
}
.link-line::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.link-line:hover::after { transform: scaleX(0.3); }
.on-dark .link-line { color: var(--gold); }

/* ---------- navigacija ---------- */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, height 0.5s ease, box-shadow 0.5s ease, transform 0.45s ease;
}
.site-nav .wrap-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-nav.scrolled {
  background: rgba(25, 17, 25, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 72px;
  box-shadow: 0 1px 0 var(--line-light);
}
.site-nav.hidden { transform: translateY(-100%); }

.nav-logo { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }
.nav-logo svg { height: 46px; width: auto; transition: height 0.5s ease; }
.site-nav.scrolled .nav-logo svg { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-side { display: flex; align-items: center; gap: 1.1rem; flex-shrink: 0; }
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  border: 1px solid var(--line-light);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  transition: border-color 0.4s, background 0.4s, color 0.4s;
}
.nav-tel:hover { border-color: var(--gold); color: var(--gold); }
.nav-lang {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-light-muted);
  transition: color 0.3s;
}
.nav-lang:hover { color: var(--gold); }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 220;
}
.nav-burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.45s var(--ease-out), top 0.45s var(--ease-out), opacity 0.3s;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 28px; }
body.menu-open .nav-burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* mobilni meni preko cijelog ekrana */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s var(--ease-in-out);
  visibility: hidden;
}
body.menu-open .menu-overlay { clip-path: circle(150% at calc(100% - 44px) 44px); visibility: visible; }
.menu-overlay nav { display: flex; flex-direction: column; gap: 0.4rem; }
.menu-overlay nav a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  line-height: 1.25;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.6s var(--ease-out), color 0.3s;
}
.menu-overlay nav a:hover, .menu-overlay nav a.active { color: var(--gold); font-style: italic; }
body.menu-open .menu-overlay nav a { opacity: 1; transform: none; }
.menu-overlay .menu-meta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  color: var(--text-light-muted);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
body.menu-open .menu-overlay .menu-meta { opacity: 1; }
.menu-overlay .menu-meta a:hover { color: var(--gold); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--text-light);
  overflow: hidden;
}
.hero.hero-short { min-height: 78svh; }
.hero-bg {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(28%) contrast(1.04) brightness(0.92);
  transform: scale(1.06);
  animation: heroZoom 2.6s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(25,17,25,0.94) 0%, rgba(25,17,25,0.42) 45%, rgba(25,17,25,0.55) 100%),
    radial-gradient(120% 90% at 70% 20%, transparent 40%, rgba(25,17,25,0.5) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-top: calc(var(--nav-h) + 3rem);
}
.hero .kicker { color: var(--gold); margin-bottom: 1.8rem; }
.hero .lede { margin-top: 2rem; }
.hero-cta { margin-top: 2.8rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(3.5rem, 7vw, 6rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-light-muted);
}
.hero-scroll .line {
  width: 1px; height: 64px;
  background: var(--line-light);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollLine 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  60%, 100% { top: 110%; }
}

/* rotirajući vinil u heroju */
.hero-vinyl {
  position: absolute;
  z-index: 1;
  right: clamp(-90px, -4vw, -40px);
  top: 16%;
  width: clamp(200px, 26vw, 380px);
  opacity: 0.5;
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- marquee traka ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  padding-block: 1.2rem;
  background: var(--paper);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  white-space: nowrap;
  color: var(--text-dark);
}
.marquee-track span em { font-style: italic; color: var(--purple); }
.marquee-track .dot { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee-dark { background: var(--ink); border-color: var(--line-light); }
.marquee-dark .marquee-track span { color: var(--text-light); }
.marquee-dark .marquee-track span em { color: var(--gold); }

/* logotipi klijenata */
.logo-marquee { overflow: hidden; padding-block: 2.4rem; }
.logo-marquee .marquee-track { gap: clamp(3rem, 6vw, 5.5rem); align-items: center; animation-duration: 38s; }
.logo-marquee img {
  height: clamp(52px, 6vw, 74px);
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.55;
  transition: filter 0.4s, opacity 0.4s;
  mix-blend-mode: multiply;
}
.logo-marquee img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- kartice usluga (home) ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}
.service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink);
  color: var(--text-light);
  aspect-ratio: 3 / 4.1;
  display: flex;
  align-items: flex-end;
}
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 0.8s;
  filter: grayscale(20%) brightness(0.9);
}
.service-card:hover > img { transform: scale(1.06); filter: grayscale(0%) brightness(0.95); }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,17,25,0.93) 8%, rgba(25,17,25,0.25) 55%, transparent 80%);
  z-index: 1;
  transition: background 0.5s;
}
.service-body {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  width: 100%;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  margin-bottom: 0.9rem;
}
.service-body .service-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s var(--ease-out), opacity 0.5s 0.05s, margin 0.6s var(--ease-out);
}
.service-card:hover .service-desc,
.service-card:focus-within .service-desc { max-height: 200px; opacity: 1; margin-bottom: 1.1rem; }
.service-desc li { padding-left: 1.2rem; position: relative; margin-bottom: 0.3rem; }
.service-desc li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.service-body .link-line { color: var(--gold); }
.service-num {
  position: absolute;
  top: 1.6rem; right: 1.8rem;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.85;
}

/* ---------- velika editorial izjava ---------- */

.statement { text-align: center; }
.statement .display-2 { max-width: 21em; margin-inline: auto; }
.statement .kicker { margin-bottom: 2rem; }

/* ---------- recenzije ---------- */

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.reviews-side { position: sticky; top: 120px; }
.reviews-side .kicker { margin-bottom: 1.4rem; }
.reviews-side .lede { margin-top: 1.4rem; margin-bottom: 2.2rem; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  margin-bottom: 2.2rem;
}
.on-dark .google-badge { border-color: var(--line-light); }
.google-badge .score {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.google-badge .stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }
.google-badge small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dark-muted);
}
.on-dark .google-badge small { color: var(--text-light-muted); }

.review-slider { position: relative; overflow: hidden; }
.review-track {
  display: flex;
  transition: transform 0.75s var(--ease-in-out);
}
.review-slide { flex: 0 0 100%; min-width: 0; padding-right: 2px; }
.review-quote-mark {
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 1.6rem;
}
.review-slide h3 {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1.4rem;
}
.review-slide blockquote p { margin-bottom: 1em; color: var(--text-dark-muted); }
.on-dark .review-slide blockquote p { color: var(--text-light-muted); }
.review-author {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--purple);
}
.on-dark .review-author { color: var(--gold); }
.review-author::before { content: ""; width: 2.2rem; height: 1px; background: currentColor; }

.review-nav {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.review-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.3s;
}
.on-dark .review-btn { border-color: var(--line-light); }
.review-btn:hover { background: var(--purple); border-color: var(--purple); color: var(--paper); }
.review-dots { display: flex; gap: 0.55rem; }
.review-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-dark);
  transition: background 0.35s, transform 0.35s;
}
.on-dark .review-dots button { background: var(--line-light); }
.review-dots button.active { background: var(--purple); transform: scale(1.4); }
.on-dark .review-dots button.active { background: var(--gold); }

/* ---------- paketi (vjenčanja) ---------- */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
  align-items: start;
}
.package-card {
  background: #fffdf8;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(25, 17, 25, 0.35);
}
.package-photo {
  position: relative;
  aspect-ratio: 4 / 2.9;
  overflow: hidden;
}
.package-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.package-card:hover .package-photo img { transform: scale(1.06); }
.package-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,17,25,0.55), transparent 55%);
}
.package-name {
  position: absolute;
  left: 1.6rem; bottom: 1.2rem;
  z-index: 2;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 420;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.package-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}
.package-list { padding: 1.8rem 1.8rem 2rem; }
.package-list li {
  display: flex;
  gap: 1.1rem;
  padding-block: 1.05rem;
  border-top: 1px solid var(--line-dark);
}
.package-list li:first-child { border-top: 0; padding-top: 0; }
.package-list .p-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: var(--purple);
}
.package-list .p-icon svg { width: 19px; height: 19px; }
.package-list h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}
.package-list p { font-size: 0.9rem; line-height: 1.6; color: var(--text-dark-muted); }

/* ---------- editorial feature redovi ---------- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(4rem, 9vw, 7.5rem); }
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media {
  position: relative;
}
.feature-media .arch {
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
}
.feature-media .arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.feature-media:hover .arch img { transform: scale(1.05); }
.feature-media .vinyl-deco {
  position: absolute;
  width: 130px;
  bottom: -34px;
  z-index: 2;
  animation: spin 22s linear infinite;
  filter: drop-shadow(0 14px 28px rgba(25,17,25,0.3));
}
.feature-row:nth-child(odd) .feature-media .vinyl-deco { right: -26px; }
.feature-row:nth-child(even) .feature-media .vinyl-deco { left: -26px; }
.feature-copy .kicker { margin-bottom: 1.3rem; }
.feature-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.feature-copy p { color: var(--text-dark-muted); max-width: 32em; }
.on-dark .feature-copy p { color: var(--text-light-muted); }

/* ---------- eventi galerija ---------- */

.gallery-year {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  margin: clamp(3.4rem, 7vw, 5.5rem) 0 1.8rem;
}
.gallery-year:first-of-type { margin-top: 0; }
.gallery-year h2 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-style: italic;
  color: var(--purple);
}
.gallery-year::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.1rem;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: var(--ink-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
  background: linear-gradient(to top, rgba(25,17,25,0.85) 0%, transparent 55%);
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item figcaption strong {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: 1.1rem;
  display: block;
}
.gallery-item figcaption span { font-size: 0.78rem; letter-spacing: 0.14em; color: var(--text-light-muted); }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 13, 20, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(88vw, 1300px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.lightbox-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 0.3rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: background 0.35s, border-color 0.35s, color 0.35s;
  z-index: 2;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.lightbox-close { top: 1.6rem; right: 1.6rem; }
.lightbox-prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.6rem; top: 50%; transform: translateY(-50%); }

/* ---------- numerirane usluge (eventi) ---------- */

.numbered-list { border-top: 1px solid var(--line-light); }
.numbered-item {
  display: grid;
  grid-template-columns: 110px 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.2rem, 4.5vw, 3.6rem);
  border-bottom: 1px solid var(--line-light);
  align-items: start;
}
.numbered-item .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--gold);
  padding-top: 0.4rem;
}
.numbered-item h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}
.numbered-item .n-body p { color: var(--text-light-muted); }
.numbered-item .n-body p strong { color: var(--text-light); font-weight: 500; }

/* ---------- rasvjeta editorial ---------- */

.light-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mini-gallery .gallery-item:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }

/* ---------- kontakt ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact-info .kicker { margin-bottom: 1.4rem; }
.contact-info .display-3 { margin-bottom: 1.2rem; }
.contact-info .lede { margin-bottom: 2.4rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.contact-channel:hover { border-color: var(--gold); transform: translateX(6px); }
.contact-channel .c-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.contact-channel .c-icon svg { width: 20px; height: 20px; }
.contact-channel small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 0.15rem;
}
.contact-channel strong { font-weight: 500; font-size: 1.05rem; }

/* forma */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1.8rem;
}
.form-field { position: relative; }
.form-field.full { grid-column: span 2; }
.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 0.6rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  padding: 0.7rem 0 0.9rem;
  color: var(--text-light);
  font: inherit;
  transition: border-color 0.4s;
  border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.form-field:focus-within::after { transform: scaleX(1); }
.form-submit { grid-column: span 2; margin-top: 0.6rem; }

.section-light-form .form-field label { color: var(--text-dark-muted); }
.section-light-form .form-field input,
.section-light-form .form-field textarea { color: var(--text-dark); border-color: var(--line-dark); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--text-light);
  padding: clamp(4rem, 8vw, 6.5rem) 0 2.4rem;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .vinyl-logo { width: 108px; margin-bottom: 1.6rem; animation: spin 30s linear infinite; }
.footer-brand p { color: var(--text-light-muted); font-size: 0.92rem; max-width: 30em; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--text-light-muted); transition: color 0.3s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--text-light-muted); font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(246,241,231,0.4);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-groove {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  opacity: 0.07;
  animation: spin 60s linear infinite;
  pointer-events: none;
}

/* ---------- preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .vinyl-logo {
  width: 130px;
  animation: spin 3.2s linear infinite;
}
.preloader .vinyl-logo circle[stroke] {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawGroove 1.6s var(--ease-out) forwards;
}
@keyframes drawGroove { to { stroke-dashoffset: 0; } }

/* ---------- animacije otkrivanja ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s ease, transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="left"].in, [data-reveal="right"].in, [data-reveal="scale"].in { transform: none; }

/* maskirano otkrivanje naslova po linijama */
.split-lines .line-mask { display: block; overflow: hidden; }
.split-lines .line-inner {
  display: block;
  transform: translateY(115%);
  transition: transform 1.15s var(--ease-out);
}
.split-lines.in .line-inner { transform: none; }

/* logo animacija (navigacija) */
.nav-logo .wordmark rect {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawGroove 1.4s 0.25s var(--ease-out) forwards;
}
.nav-logo .wordmark text {
  opacity: 0;
  animation: logoText 0.9s 0.7s ease forwards;
}
@keyframes logoText { from { opacity: 0; } to { opacity: 1; } }

/* ---------- hvala / privacy jednostavne stranice ---------- */

.simple-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--ink);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.simple-hero .wrap { position: relative; z-index: 2; }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-family: var(--font-display); font-weight: 420; font-size: 1.7rem; margin: 2.4rem 0 0.9rem; }
.prose p, .prose li { color: var(--text-dark-muted); margin-bottom: 1em; }
.prose ul { list-style: disc; padding-left: 1.4rem; }

/* ---------- responzivnost ---------- */

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-tel { display: none; }
  .reviews-layout, .contact-layout, .light-hero-grid { grid-template-columns: 1fr; }
  .reviews-side { position: static; }
  .numbered-item { grid-template-columns: 64px 1fr; }
  .numbered-item .n-body { grid-column: 2; }
}

@media (max-width: 860px) {
  .services-grid, .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .feature-row { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature-row:nth-child(even) .feature-media { order: 0; }
  .feature-media { max-width: 440px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-submit { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-vinyl { display: none; }
  .hero-scroll { display: none; }
  :root { --nav-h: 76px; }
  .service-body .service-desc { max-height: none; opacity: 1; margin-bottom: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], .split-lines .line-inner { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   DJ GINO — dodatci (script logo, luksuzni akcenti)
   ============================================================ */

/* Gino script logo u navigaciji */
.nav-logo .gino-mark {
  height: 54px;
  width: auto;
  display: block;
  transition: height 0.5s ease, filter 0.5s ease;
  /* kremasti na tamnoj podlozi */
  filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(340%) hue-rotate(357deg) brightness(103%);
}
.site-nav.scrolled .nav-logo .gino-mark { height: 44px; }

/* animirani reveal loga (wipe + fade) */
.nav-logo .gino-mark {
  clip-path: inset(0 100% 0 0);
  animation: ginoReveal 1.1s 0.2s var(--ease-out) forwards;
}
@keyframes ginoReveal { to { clip-path: inset(0 0 0 0); } }

/* preloader: veliki Gino + zlatna linija */
.preloader .gino-load {
  height: 92px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(340%) hue-rotate(357deg) brightness(103%);
  clip-path: inset(0 100% 0 0);
  animation: ginoReveal 1.3s var(--ease-out) forwards;
}

/* zlatni tanki razdjelnik ispod naslova (luksuzni detalj) */
.gold-rule {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.6rem 0;
}
.section-head.centered .gold-rule { margin-inline: auto; }

/* footer Gino logo */
.footer-brand .gino-foot {
  height: 74px; width: auto; margin-bottom: 1.4rem;
  filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(340%) hue-rotate(357deg) brightness(103%);
}

/* velika brojka (statistika/o-meni) u zlatnom serifu */
.big-num {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--gold);
}

/* elegantniji hero filter za luksuzni dojam */
.hero-bg img { filter: grayscale(12%) contrast(1.02) brightness(0.9); }

/* FAQ akordeon */
.faq-item {
  border-top: 1px solid var(--line-light);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.6rem 3rem 1.6rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 400;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out);
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}
.faq-a p { color: var(--text-light-muted); padding-bottom: 0.2rem; }
.faq-a p strong { color: var(--text-light); font-weight: 500; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.6rem; }

/* proces koraci */
.steps { counter-reset: step; display: grid; gap: 0; }
.step-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line-dark);
  align-items: baseline;
}
.on-dark .step-row { border-color: var(--line-light); }
.step-row .step-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
}
.step-row h4 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.step-row p { color: var(--text-dark-muted); max-width: 40em; }
.on-dark .step-row p { color: var(--text-light-muted); }

/* lokacije grid */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.venue-card {
  background: var(--ink);
  padding: 2rem 1.8rem;
  transition: background 0.4s;
}
.venue-card:hover { background: var(--ink-soft); }
.venue-card h4 {
  font-family: var(--font-display); font-weight: 420;
  font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-light);
}
.venue-card p { font-size: 0.9rem; color: var(--text-light-muted); }

/* logotipi partnera (tekstualni) */
.partners { display: flex; flex-wrap: wrap; gap: 0.8rem 2.2rem; }
.partners span {
  font-size: 0.9rem; letter-spacing: 0.06em;
  color: var(--text-light-muted);
  position: relative; padding-left: 1.4rem;
}
.partners span::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* FAQ na svijetloj podlozi */
.faq-light .faq-item { border-color: var(--line-dark); }
.faq-light .faq-q { color: var(--text-dark); }
.faq-light .faq-q:hover { color: var(--purple); }
.faq-light .faq-a p { color: var(--text-dark-muted); }
.faq-light .faq-a p strong { color: var(--text-dark); }
