/* ============================================================
   A KO TE ŠIŠA — Berbernica Novi Sad
   Dizajn i izrada: DeltaWeb
   Stack: vanilla CSS, mobile-first
============================================================ */

/* ===== CSS varijable ===== */
:root {
  --bg: #0e0e10;
  --bg-alt: #141417;
  --bg-card: #1a1a1e;
  --text: #f5f4f1;
  --text-muted: #a39e94;
  --accent: #d4a04c;
  --accent-dark: #b8860b;
  --line: rgba(212, 160, 76, 0.18);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --container: 1160px;
  --radius: 10px;
  --header-h: 72px;

  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.45);
  --transition: 0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ===== Reset / baza ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text);
}

ul {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* Sekcije na koje se skače dobijaju offset zbog sticky headera */
[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Tipografija ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
}

.accent {
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-head {
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 640px;
}

.section-sub {
  margin-top: 0.9rem;
  color: var(--text-muted);
}

/* ===== Dugmad ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition), border-color var(--transition);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #131210;
  box-shadow: 0 6px 24px rgba(212, 160, 76, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 160, 76, 0.42);
  color: #131210;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.15rem 2.6rem;
  font-size: 1.15rem;
}

/* ===== Barber traka (dekorativni motiv) ===== */
.barber-stripe {
  height: 5px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 14px,
    #15141200 14px 28px,
    var(--accent-dark) 28px 42px,
    #15141200 42px 56px
  );
  opacity: 0.85;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(14, 14, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}

/* Zatamnjenje na skrolu (klasa se dodaje iz JS) */
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.92);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.logo:hover {
  color: var(--text);
}

.logo-icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
  transition: transform var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-18deg);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-text em {
  font-style: normal;
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav ul {
  display: flex;
  gap: 1.6rem;
}

.main-nav ul a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding: 0.3rem 0;
}

.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav ul a:hover {
  color: var(--text);
}

.main-nav ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

/* TODO: zameniti pravom fotografijom radnje —
   ubaciti background-image: url("../assets/img/hero.jpg") preko gradijenta */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 160, 76, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(184, 134, 11, 0.07), transparent 60%),
    linear-gradient(160deg, #161519 0%, var(--bg) 55%, #0a0a0c 100%);
}

/* Suptilna tekstura — dijagonalne linije kao brusni kaiš */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245, 244, 241, 0.014) 0 1px,
    transparent 1px 9px
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 45%, transparent 55%, rgba(8, 8, 9, 0.75) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(212, 160, 76, 0.07);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.hero-badge strong {
  color: var(--text);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.badge-sep {
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(3rem, 9.5vw, 6.2rem);
  margin-bottom: 1.4rem;
}

.title-accent {
  color: var(--accent);
}

.title-dash {
  display: inline-block;
  width: 0.55em;
  height: 0.08em;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 0.18em;
}

.hero-sub {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-strip svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.hero-scroll-hint span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(9px); opacity: 0.2; }
}

/* ============================================================
   ZAŠTO MI
============================================================ */
.section-why {
  background: var(--bg-alt);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(212, 160, 76, 0.09);
  border: 1px solid var(--line);
  margin-bottom: 1.2rem;
  transition: background var(--transition), transform var(--transition);
}

.why-card:hover .why-icon {
  background: rgba(212, 160, 76, 0.16);
  transform: rotate(-6deg) scale(1.06);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* ============================================================
   CENOVNIK
============================================================ */
.price-list {
  display: grid;
  gap: 0.8rem;
  max-width: 820px;
}

.price-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  transition: transform var(--transition), border-color var(--transition);
}

.price-item:hover {
  transform: translateX(6px);
  border-color: var(--line);
}

.price-item.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(212, 160, 76, 0.10), var(--bg-card) 55%);
}

.price-flag {
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  background: var(--accent);
  color: #131210;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.18rem 0.7rem;
  border-radius: 100px;
}

.price-info {
  min-width: 0;
}

.price-info h3 {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.price-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.price-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(245, 244, 241, 0.15);
  transform: translateY(-0.2em);
  min-width: 24px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.8rem;
  max-width: 820px;
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.price-note svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ============================================================
   GALERIJA
============================================================ */
.section-gallery {
  background: var(--bg-alt);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.6, 0.3, 1), filter 0.5s ease;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  background: rgba(10, 10, 12, 0.45);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

/* ============================================================
   RECENZIJE
============================================================ */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--accent);
  line-height: 1;
}

.rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.rating-meta .stars {
  font-size: 1.05rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.review-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}

.quote-mark {
  position: absolute;
  top: 0.4rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}

.review-card blockquote p {
  font-size: 0.95rem;
  color: var(--text);
}

.review-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.reviews-cta {
  margin-top: 2.4rem;
  text-align: center;
}

/* ============================================================
   KONTAKT — radno vreme + mapa
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-table th,
.hours-table td {
  padding: 0.8rem 1.3rem;
  text-align: left;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table th {
  font-weight: 600;
  color: var(--text-muted);
}

.hours-table td {
  text-align: right;
  font-weight: 700;
  color: var(--text);
}

.hours-table tr.closed th,
.hours-table tr.closed td {
  color: #d96c5a;
}

.hours-table tr.closed td {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.contact-address {
  font-style: normal;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.contact-address p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
}

.contact-address svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-address a {
  font-weight: 700;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  box-shadow: var(--shadow-card);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  filter: grayscale(0.65) contrast(1.05);
  transition: filter var(--transition);
}

.contact-map:hover iframe {
  filter: grayscale(0);
}

/* ============================================================
   FINALNI CTA
============================================================ */
.section-cta {
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(212, 160, 76, 0.10), transparent 70%),
    var(--bg-alt);
  padding: 0;
  text-align: center;
}

.cta-inner {
  padding: clamp(4rem, 9vw, 6.5rem) 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.cta-inner h2 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

.cta-inner p {
  color: var(--text-muted);
  max-width: 460px;
}

.cta-inner .btn {
  margin-top: 0.6rem;
}

.cta-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #0a0a0c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-logo em {
  font-style: normal;
  color: var(--accent);
}

.footer-brand p:last-child,
.footer-col p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col h3 {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.footer-col p + p {
  margin-top: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.3rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-credit a {
  font-weight: 700;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 9, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
}

.lightbox-img {
  max-width: min(92vw, 980px);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 20, 23, 0.8);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   SCROLL REVEAL (Intersection Observer dodaje .visible)
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.6, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger unutar grid-ova */
.why-grid .reveal:nth-child(2),
.reviews-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3),
.reviews-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(4),
.reviews-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Korisnici koji ne žele animacije */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-hint span {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* ----- Mobilna navigacija (do 860px) ----- */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.4rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }

  .main-nav ul a {
    display: block;
    padding: 0.85rem 0.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav ul a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }
}

/* ----- Tablet (od 600px) ----- */
@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom .container {
    flex-direction: row;
    text-align: left;
  }
}

/* ----- Desktop (od 1024px) ----- */
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  }
}
