@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --dark: #0f0f0f;
  --surface: #161616;
  --border: #2a2a2a;
  --muted: #555555;
  --silver: #888888;
  --light: #cccccc;
  --white: #f0f0f0;
  --accent: #c6aa86;
  --accent-dim: rgba(198, 170, 134, 0.12);

  --font-display: 'Nexa', sans-serif;
  --font-body: 'Nexa', sans-serif;

  --nav-height: 100px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 200;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

/* ─── NAVIGATION ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-logo {
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 64px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.site-nav a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}
.hamburger span:nth-child(1) { width: 32px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 28px; }
.hamburger.open span:nth-child(1) { width: 32px; transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { width: 32px; transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 8vw, 56px);
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu a:hover { color: var(--accent); }

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 56px 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.3) 0%,
    rgba(5,5,5,0.1) 40%,
    rgba(5,5,5,0.75) 80%,
    rgba(5,5,5,1) 100%
  );
  z-index: 2;
}
.hero-video img,
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.2s forwards;
}
.hero-eyebrow .gold-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 200;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--transition) 0.4s forwards;
}
.hero-sub {
  font-size: 14px;
  font-weight: 200;
  color: var(--white);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 0.7s forwards;
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 16px 32px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--transition) 1s forwards;
}
.hero-cta:hover {
  background: var(--accent);
  color: var(--black);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS ─── */
.section { padding: 120px 56px; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 200;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── PONUKA / SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  margin-top: 64px;
}
.service-card {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
  overflow: hidden;
  text-align: center;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover { background: var(--surface); }
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: var(--surface); }
.service-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-desc {
  font-size: 14px;
  font-weight: 200;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.service-features li {
  font-size: 13px;
  font-weight: 200;
  color: var(--light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.service-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--transition);
  justify-content: center;
}
.service-cta::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-cta { gap: 20px; }

/* ─── ABOUT / O MNE ─── */
.about-wrapper {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  width: 340px;
  flex-shrink: 0;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 520px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s var(--transition);
}
.about-image:hover img { transform: scale(1.03); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  opacity: 0.3;
  pointer-events: none;
}
.about-content { display: flex; flex-direction: column; gap: 32px; }
.about-content p {
  font-size: 15px;
  font-weight: 200;
  color: var(--white);
  line-height: 1.9;
}
.about-content p strong {
  color: var(--white);
  font-weight: 800;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: 0.03em;
  display: block;
}
.stat-label {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 4px;
  display: block;
}

/* ─── KONTAKT ─── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}
.contact-info { display: flex; flex-direction: column; gap: 48px; }
.contact-block h3 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 200;
}
.contact-block a, .contact-block p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--white);
  transition: color var(--transition);
}
.contact-block a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 16px; margin-top: 16px; }
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.contact-legal {
  padding: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-legal h3 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 200;
}
.legal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.legal-row:last-child { border-bottom: none; }
.legal-row span:first-child {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}
.legal-row span:last-child {
  font-size: 13px;
  font-weight: 200;
  color: var(--white);
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 40px 56px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  font-weight: 200;
  color: var(--light);
  letter-spacing: 0.1em;
}

/* ─── PAGE TRANSITION ─── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* ═══════════════════════════════
   RESPONZÍVNY DIZAJN
═══════════════════════════════ */

/* ─── TABLET (do 1024px) ─── */
@media (max-width: 1024px) {
  .section { padding: 100px 40px; }
  .site-header { padding: 0 40px; }
  .hero { padding: 0 40px 80px; }
  .site-footer { padding: 32px 40px; }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-items: center;
    text-align: center;
  }
  .about-image { width: 300px; }
  .about-content { text-align: left; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .service-card:last-child { border-bottom: none; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .roller-inner { max-width: 100%; }
}

/* ─── MOBIL (do 768px) ─── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }

  /* Header */
  .site-header { padding: 0 20px; height: 80px; }
  .site-logo img { height: 44px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Sekcie */
  .section { padding: 64px 20px; }
  .hero { padding: 0 20px 56px; }

  /* Hero text */
  .hero-title { font-size: clamp(32px, 10vw, 56px); }
  .hero-sub { font-size: 13px; }
  .hero-cta { padding: 14px 24px; font-size: 10px; }

  /* Section labels */
  .section-label { justify-content: center; }
  .section-label::before { display: none; }
  .section-title { text-align: center; font-size: clamp(28px, 8vw, 44px); }

  /* Ponuka */
  .services-grid { grid-template-columns: 1fr; border: none; gap: 1px; }
  .service-card {
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
  }
  .service-card:last-child { border-bottom: none; }
  .service-features li { justify-content: center; }
  .service-cta { justify-content: center; }

  /* O mne – fotka hore, text dolu, všetko centrované */
  .about-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .about-image { width: 240px; }
  .about-content { text-align: center; }
  .about-content p { text-align: center; }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }
  .stat-number { font-size: 32px; }

  /* Galéria */
  .gallery-item { width: 160px; }
  .gallery-roller { padding: 56px 0; }
  .gallery-roller-label { padding: 0 20px; text-align: center; }
  .gallery-roller-label .section-label { justify-content: center; }

  /* Reviews */
  .reviews-label { padding: 0 20px; text-align: center; }
  .reviews-label .section-label { justify-content: center; }

  /* Instagram */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .instagram-section { padding: 64px 20px; }

  /* Kontakt */
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-block { text-align: center; }
  .contact-social { justify-content: center; }
  .contact-legal { padding: 32px 20px; }
  .legal-row { flex-direction: column; gap: 4px; text-align: center; }
  .legal-row span:first-child { font-size: 10px; }

  /* Roller */
  .clients-roller { padding: 48px 0; }
  .client-logo { height: 48px; }
  .client-logo img { height: 32px; }
  .client-logo span { font-size: 14px; }
  .roller-inner::before,
  .roller-inner::after { width: 60px; }

  /* Footer */
  .site-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 32px 20px;
  }
  .footer-socials { justify-content: center; }

  /* Slogan sekcia */
  .slogan-section { padding: 48px 20px; gap: 56px; }
  .slogan-inner { flex-direction: column !important; gap: 28px; }
  .slogan-img-wrap { flex: 0 0 auto; width: 70%; margin: 0 auto; }
  .slogan-content { align-items: center !important; text-align: center !important; width: 100%; }
  .slogan-title { text-align: center !important; font-size: clamp(22px, 6vw, 32px); }
  .slogan-text { text-align: center !important; font-size: 15px; }
  .slogan-eyebrow { margin: 0 auto; }
}

/* ─── MALÝ MOBIL (do 400px) ─── */
@media (max-width: 400px) {
  .section { padding: 56px 16px; }
  .hero { padding: 0 16px 48px; }
  .site-header { padding: 0 16px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
  .about-image { width: 220px; }
  .service-card { padding: 32px 16px; }
}

/* ─── KLIENTI ROLLER ─── */
.clients-roller {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.roller-inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.roller-inner::before,
.roller-inner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.roller-inner::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.roller-inner::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.roller-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 40px;
  font-weight: 200;
  text-align: center;
}
.roller-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: rollerScroll 20s linear infinite;
}
.roller-track:hover { animation-play-state: paused; }
@keyframes rollerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 108px;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: opacity var(--transition), filter var(--transition);
  white-space: nowrap;
}
.client-logo:hover { opacity: 0.9; filter: none; }
.client-logo img { height: 82px; width: auto; object-fit: contain; }
.client-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 29px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

/* ─── GALÉRIA ROLLER ─── */
.gallery-roller {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  background: var(--dark);
}
.gallery-roller-label {
  margin-bottom: 48px;
  padding: 0 56px;
  text-align: center;
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 35s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-item {
  width: 180px;
  height: 320px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--transition), filter 0.6s ease;
  filter: grayscale(30%);
}
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0); }

/* ─── GALLERY LIGHTBOX ─── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,5,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.gallery-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-lightbox.active img { transform: scale(1); }
.gallery-lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  line-height: 1;
  font-weight: 200;
}
.gallery-lightbox-close:hover { opacity: 1; }
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
}
.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .gallery-item { width: 260px; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
}

/* ─── INSTAGRAM FEED ─── */
.instagram-section {
  padding: 80px 56px;
}
.instagram-section .section-label { justify-content: center; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.instagram-placeholder {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 200;
}
.instagram-note {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 200;
  color: var(--light);
  letter-spacing: 0.05em;
}
.instagram-note a { color: var(--accent); }

/* ─── SOCIAL LINKS V FOOTER ─── */
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition);
}
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item { width: 240px; height: 160px; }
}

/* ─── RECENZIE ROLLER ─── */
.reviews-section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.reviews-label {
  margin-bottom: 56px;
  padding: 0 56px;
  text-align: center;
}
.reviews-roller {
  overflow: hidden;
  position: relative;
}
.reviews-roller::before,
.reviews-roller::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-roller::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.reviews-roller::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 45s linear infinite;
  padding: 8px 0;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  width: 360px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  padding: 40px 36px;
  background: var(--surface);
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card:hover { border-color: var(--accent); background: #1a1a1a; }
.review-card:hover::before { transform: scaleX(1); }
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars span { color: var(--accent); font-size: 14px; }
.review-text {
  font-size: 14px;
  font-weight: 200;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.review-author {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-author-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-author-role {
  font-size: 11px;
  font-weight: 200;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .review-card { width: 280px; padding: 28px 24px; }
  .reviews-label { padding: 0 20px; }
  .reviews-roller::before,
  .reviews-roller::after { width: 60px; }
}

/* ═══════════════════════════
   GALÉRIA EVENTOV - Pinterest štýl
═══════════════════════════ */
.ev-header { text-align: center; margin-bottom: 48px; }

.ev-grid {
  columns: 3;
  column-gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}

.ev-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 16px;
}

.ev-item.ev-hidden { display: none; }

.ev-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.ev-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.ev-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(5,5,5,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ev-item:hover .ev-overlay { opacity: 1; }

.ev-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}

.ev-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.ev-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 48px;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
  border-radius: 4px;
}
.ev-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Lightbox */
.ev-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,5,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.ev-lightbox.active { opacity: 1; pointer-events: all; }
.ev-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.ev-lb-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white); font-size: 36px;
  cursor: pointer; opacity: 0.6;
  transition: opacity 0.3s; line-height: 1;
}
.ev-lb-close:hover { opacity: 1; }
.ev-lb-prev, .ev-lb-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  transition: background 0.3s;
}
.ev-lb-prev { left: 24px; }
.ev-lb-next { right: 24px; }
.ev-lb-prev:hover, .ev-lb-next:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 1200px) { .ev-grid { columns: 3; } }
@media (max-width: 768px)  { .ev-grid { columns: 2; column-gap: 8px; } .ev-item { margin-bottom: 8px; } }
@media (max-width: 480px)  { .ev-grid { columns: 1; } }
@media (max-width: 768px) {
  .ev-lb-prev { left: 8px; }
  .ev-lb-next { right: 8px; }
}

/* ═══════════════════════════
   SLOGAN SEKCIA
═══════════════════════════ */
.slogan-section {
  padding: 80px 56px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.slogan-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.slogan-img-right {
  flex-direction: row-reverse;
}
.slogan-img-wrap {
  flex: 0 0 380px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.slogan-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.8s ease;
}
.slogan-img-wrap:hover img { transform: scale(1.03); }
.slogan-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}
.slogan-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}
.slogan-eyebrow {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0;
}
.slogan-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: left;
}
.slogan-text {
  font-size: 17px;
  font-weight: 200;
  color: var(--white);
  line-height: 1.9;
  text-align: left;
}

@media (max-width: 1024px) {
  .slogan-img-wrap { flex: 0 0 320px; }
  .slogan-inner { gap: 48px; }
}
