/* Paintball Zagon - shared styles
   Tactical dark + tactical yellow accent
*/

:root {
  --bg: #313233;
  --bg-2: #2a2b2c;
  --bg-3: #3a3b3c;
  --fg: #f4f1e8;
  --fg-dim: #b5b2a8;
  --fg-muted: #807d75;
  --accent: #D3B62F;
  --accent-ink: #1a1b1c;
  --secondary: #D3B62F;
  --tertiary: #7A9D47;
  --line: #404142;
  --line-2: #505152;
  --danger: #c8321e;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ───────── typography ───────── */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em; line-height: 0.95; margin: 0; }

.h-display { font-size: clamp(56px, 9vw, 152px); line-height: 0.88; }
.h-section { font-size: clamp(40px, 5.5vw, 84px); }
.h-card    { font-size: clamp(22px, 2vw, 28px); }

p { margin: 0 0 1em; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--fg-dim); max-width: 60ch; }

/* ───────── layout ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.section-pad { padding: clamp(80px, 10vw, 140px) 0; }
.section-pad-sm { padding: clamp(56px, 7vw, 96px) 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ───────── nav ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 18px;
}
.nav__brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}
.nav__menu {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__menu a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color 0.15s ease;
  position: relative;
  padding: 6px 0;
}
.nav__menu a:hover { color: var(--fg); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav__menu a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.lang-switch a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--fg-dim);
  transition: background 0.15s, color 0.15s;
}
.lang-switch a.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}
.lang-switch a:not(.is-active):hover { color: var(--fg); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav__burger span {
  width: 18px; height: 2px; background: var(--fg);
  transition: transform 0.2s, opacity 0.2s;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: var(--nav-h, 116px); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13,13,13, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0s linear 0.3s;
  }
  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0s;
  }
  .nav__menu a { padding: 14px 0; font-size: 14px; }
  .nav__burger { display: flex; }
}

/* ───────── buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--fg);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.btn--primary:hover { background: #fada3a; }
.btn--ghost {
  border-color: var(--line-2);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ───────── hero ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding-bottom: clamp(40px, 8vh, 100px);
  padding-top: 120px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media .placeholder-video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(49,50,51,0.55) 0%, rgba(49,50,51,0.25) 35%, rgba(49,50,51,0.95) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(211,182,47,0.08), transparent 50%);
  pointer-events: none;
}

.placeholder-video {
  background:
    repeating-linear-gradient(135deg, #1a1d14 0 24px, #16190f 24px 48px),
    #16190f;
  position: relative;
}
.placeholder-video::before {
  content: "VIDEO • PAINTBALL ZAGON • 4K LOOP";
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(244,241,232,0.4);
}
.placeholder-video::after {
  content: "";
  position: absolute;
  top: 28px; right: 28px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(200,50,30,0.2);
  animation: rec 1.4s infinite;
}
@keyframes rec { 50% { opacity: 0.3; } }

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.hero__title {
  font-size: clamp(64px, 11vw, 184px);
  line-height: 0.86;
  letter-spacing: -0.005em;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-feature-settings: "ss01";
}
.hero__sub {
  margin-top: clamp(18px, 2vw, 28px);
  max-width: 56ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
}
.hero__cta {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll { display: none; }

/* hero corner link → opens video with sound in new window */
.hero__video-link {
  position: absolute;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  background: rgba(13, 13, 13, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--fg);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.hero__video-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-2px);
}
.hero__video-link-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.hero__video-link:hover .hero__video-link-icon {
  background: var(--accent-ink);
  color: var(--accent);
}
.hero__video-link-icon svg { width: 14px; height: 14px; margin-left: 2px; }
.hero__video-link-text { display: flex; flex-direction: column; line-height: 1.1; }
.hero__video-link-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.2s ease;
}
.hero__video-link:hover .hero__video-link-eyebrow { color: var(--accent-ink); }
.hero__video-link-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (max-width: 760px) {
  /* On mobile the hero CTAs wrap to two rows; give them clearance above the
     corner video link so they don't visually collide with "Pogledaj pakete". */
  .hero { padding-bottom: clamp(96px, 18vh, 140px); }
  .hero__video-link { bottom: 12px; }
}
@media (max-width: 600px) {
  .hero__video-link { padding: 8px 12px 8px 8px; gap: 10px; bottom: 10px; }
  .hero__video-link-icon { width: 28px; height: 28px; }
  .hero__video-link-eyebrow { font-size: 8px; }
  .hero__video-link-title { font-size: 11px; }
}

/* ───────── about / o paintballu ───────── */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(40px, 5vw, 60px);
}
.about__cell {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  gap: 16px;
}
.about__cell .num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}
.about__cell h3 {
  font-size: clamp(20px, 1.7vw, 26px);
}
.about__cell p { color: var(--fg-dim); margin: 0; font-size: 15px; }

@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ───────── packages / cijene ───────── */
.packages { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg {
  border: 1px solid var(--line-2);
  background: var(--bg);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pkg:hover { border-color: var(--accent); transform: translateY(-3px); }
.pkg--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg) 0%, #2e2a17 100%);
}
.pkg--featured::before {
  content: "NAJPOPULARNIJE";
  position: absolute;
  top: -10px; left: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 4px 10px;
}
.pkg--featured[data-en]::before { content: "MOST POPULAR"; }

.pkg__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pkg__name { font-family: var(--font-display); font-size: 28px; text-transform: uppercase; letter-spacing: 0.02em; }
.pkg__tag { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.14em; }

.pkg__price { display: flex; align-items: baseline; gap: 8px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg__price .amount { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--fg); }
.pkg__price .currency { font-family: var(--font-mono); font-size: 14px; color: var(--fg-dim); }
.pkg__price .per { margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.14em; text-transform: uppercase; }

.pkg__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg__list li { display: flex; gap: 10px; font-size: 14px; color: var(--fg-dim); align-items: flex-start; }
.pkg__list li::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 4px;
  flex-shrink: 0;
  background: var(--accent);
  clip-path: polygon(0 35%, 35% 100%, 100% 0, 100% 25%, 35% 80%, 0 55%);
}

.pkg__cta { margin-top: 8px; }

/* ───────── gallery (slideshow) ───────── */
.gallery { background: var(--bg); }
.slideshow {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.slideshow__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at center, rgba(232,201,28,0.04) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 14px),
    #0a0a0a;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.slideshow__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.slideshow__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.slideshow__slide.is-prev { visibility: visible; } /* keep outgoing slide visible during crossfade */
.slideshow__slide img,
.slideshow__slide .ph {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.slideshow__slide .ph {
  width: min(70%, 720px);
  aspect-ratio: 3 / 2;
}
.slideshow__slide .ph[data-orient="portrait"] { aspect-ratio: 2 / 3; width: min(45%, 480px); }

.slideshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 4;
}
.slideshow__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-50%) scale(1.06);
}
.slideshow__nav.prev { left: 16px; }
.slideshow__nav.next { right: 16px; }

.slideshow__hud {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  z-index: 3;
}
.slideshow__hud .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}
.slideshow__counter {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  z-index: 3;
}
.slideshow__counter b { color: var(--accent); font-weight: 700; }

.slideshow__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.slideshow__caption .label { color: var(--fg); }
.slideshow__caption .meta { color: var(--accent); }

.slideshow__thumbs {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.slideshow__thumbs::-webkit-scrollbar { height: 8px; }
.slideshow__thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 999px; }
.slideshow__thumbs::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; }
.slideshow__thumb {
  flex: 0 0 104px;
  height: 72px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}
.slideshow__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.4s ease;
}
.slideshow__thumb:hover img { opacity: 0.95; transform: scale(1.05); }
.slideshow__thumb:hover {
  border-color: rgba(232,201,28,0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.slideshow__thumb.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 6px 18px rgba(232,201,28,0.18);
}
.slideshow__thumb.is-active img { opacity: 1; }
.slideshow__thumb .n {
  position: absolute;
  bottom: 4px; right: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.45);
  padding: 1px 5px;
  border-radius: 3px;
}

/* placeholder fallback for thumbs (no img) */
.slideshow__thumb .ph-thumb {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 6px, transparent 6px 12px),
    var(--bg-3);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .slideshow__nav { width: 44px; height: 44px; font-size: 22px; }
  .slideshow__nav.prev { left: 8px; }
  .slideshow__nav.next { right: 8px; }
  .slideshow__hud { font-size: 10px; padding: 6px 10px; }
  .slideshow__counter { font-size: 12px; padding: 6px 10px; }
  .slideshow__thumb { flex: 0 0 76px; height: 56px; }
}

/* 360 banner inside gallery */
.banner-360 {
  margin-top: clamp(40px, 5vw, 60px);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.banner-360__media {
  background:
    repeating-linear-gradient(135deg, rgba(211,182,47,0.05) 0 20px, transparent 20px 40px),
    radial-gradient(ellipse at center, rgba(211,182,47,0.12), transparent 60%),
    var(--bg-3);
  min-height: 280px;
  display: grid; place-items: center;
  position: relative;
}
.banner-360__icon {
  display: block;
  width: 132px; height: 132px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,0.45), 0 0 0 0 rgba(232,201,28,0.25);
}
.banner-360__icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(232,201,28,0.5);
  border-radius: 50%;
  animation: spin360 14s linear infinite;
  pointer-events: none;
}
.banner-360__icon-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  text-indent: 0.04em; /* nudge right to offset the degree-symbol's visual asymmetry */
  pointer-events: none;
}
.banner-360__icon-sub {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  pointer-events: none;
}
.banner-360__icon:hover {
  transform: scale(1.12);
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 36px rgba(0,0,0,0.55), 0 0 0 6px rgba(232,201,28,0.18);
}
.banner-360__icon:hover .banner-360__icon-sub { color: rgba(13,13,13,0.75); }
.banner-360__icon:hover::before {
  border-color: rgba(13,13,13,0.6);
  animation-duration: 5s;
}
@keyframes spin360 { to { transform: rotate(360deg); } }
.banner-360__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
@media (max-width: 800px) {
  .banner-360 { grid-template-columns: 1fr; }
}

/* ───────── location / map ───────── */
.location { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .location__layout { grid-template-columns: 1fr; } }

.location__info { padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 26px; background: var(--bg-2); }
.info-row { display: flex; flex-direction: column; gap: 6px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border: 0; padding: 0; }
.info-row .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--fg-muted); text-transform: uppercase; }
.info-row .v { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; }
.info-row a.v:hover { color: var(--accent); }

.location__map { min-height: 460px; position: relative; background: var(--bg-3); }
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.7) contrast(1.1) invert(0.92) hue-rotate(180deg); display: block; position: absolute; inset: 0; }
.location__map .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center;
}
.location__map .pin-dot {
  display: none;
}

/* ───────── contact + footer ───────── */
.footer { background: var(--bg); padding: clamp(60px, 7vw, 100px) 0 30px; }
.footer__top { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 60px); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand h2 { font-size: clamp(40px, 5vw, 72px); line-height: 0.9; }
.footer__brand h2 em { color: var(--accent); font-style: normal; }
.footer__brand p { color: var(--fg-dim); max-width: 36ch; margin-top: 16px; }

.footer__col h4 { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); letter-spacing: 0.16em; margin-bottom: 18px; text-transform: uppercase; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--fg-dim); font-size: 14px; transition: color 0.15s; }
.footer__col a:hover { color: var(--accent); }

.footer__bottom { margin-top: clamp(50px, 7vw, 80px); padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-muted); text-transform: uppercase; }
.footer__bottom .socials { display: flex; gap: 12px; }
.footer__bottom .socials a {
  width: 32px; height: 32px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.footer__bottom .socials a:hover { border-color: var(--accent); color: var(--accent); }

/* phone row with WhatsApp + Viber chips */
.phone-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.phone-row > a:first-child { flex: 1 1 auto; min-width: 0; }
.contact-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--fg-dim) !important;
  font-size: 0;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.contact-chip svg { width: 16px; height: 16px; display: block; }
.contact-chip:hover { transform: translateY(-1px); }
.contact-chip.contact-chip--wa:hover { background: #25D366; border-color: #25D366; color: #fff !important; }
.contact-chip.contact-chip--vb:hover { background: #7360F2; border-color: #7360F2; color: #fff !important; }

/* ───────── lightbox ───────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 60px);
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  width: 100%; max-width: 1200px;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  position: relative;
  display: grid; place-items: center;
}
.lightbox__inner .ph::after { font-size: 16px !important; }
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: var(--accent); color: var(--accent-ink);
  border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 22px;
}
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(13,13,13,0.7);
  border: 1px solid var(--line-2);
  color: var(--fg);
  width: 44px; height: 64px;
  cursor: pointer;
  font-family: var(--font-display); font-size: 24px;
}
.lightbox__nav.prev { left: -22px; }
.lightbox__nav.next { right: -22px; }
.lightbox__counter {
  position: absolute;
  bottom: -34px; left: 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--fg-dim);
}

/* ───────── ticker ───────── */
.ticker {
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid var(--accent-ink);
  border-bottom: 1px solid var(--accent-ink);
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker__track ul {
  display: flex;
  align-items: center;
  gap: 56px;
  margin: 0;
  padding: 0 28px 0 0;
  list-style: none;
}
.ticker__track li {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker__track li::after {
  content: "★";
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ───────── reveal-on-scroll ───────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ───────── paint splat decorations ─────────
   Splat PNGs scattered across each section as multi-background pseudo-elements.
   Each section's .container sits above so content is never blocked. */
.about, .packages, .gallery, .location, .footer {
  position: relative;
  overflow: hidden;
}
.about > .container,
.packages > .container,
.gallery > .container,
.location > .container,
.footer > .container { position: relative; z-index: 1; }

.about::before, .about::after,
.packages::before, .packages::after,
.gallery::before, .gallery::after,
.location::before, .location::after,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  filter: saturate(0.9);
}

/* About - 3 splats, scattered */
.about::before {
  background-image:
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/1.jpg'),
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/7.jpg');
  background-position: 88% 14%, 8% 78%;
  background-size: clamp(320px, 38vw, 620px) auto,
                   clamp(280px, 34vw, 540px) auto;
  opacity: 0.32;
}
.about::after {
  background-image: url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/4.jpg');
  background-position: 58% 92%;
  background-size: clamp(260px, 26vw, 420px) auto;
  opacity: 0.26;
  transform: rotate(-14deg);
  transform-origin: 58% 92%;
}

/* Packages - 3 splats spread across the grid */
.packages::before {
  background-image:
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/2.jpg'),
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/5.jpg');
  background-position: 4% 8%, 95% 48%;
  background-size: clamp(320px, 36vw, 580px) auto,
                   clamp(300px, 32vw, 500px) auto;
  opacity: 0.30;
}
.packages::after {
  background-image: url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/3.jpg');
  background-position: 30% 95%;
  background-size: clamp(280px, 30vw, 480px) auto;
  opacity: 0.26;
  transform: rotate(18deg);
  transform-origin: 30% 95%;
}

/* Gallery - 2 splats in upper area + 1 lower-right */
.gallery::before {
  background-image:
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/6.jpg'),
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/1.jpg');
  background-position: 78% 6%, 6% 22%;
  background-size: clamp(300px, 32vw, 520px) auto,
                   clamp(280px, 28vw, 440px) auto;
  opacity: 0.30;
}
.gallery::after {
  background-image: url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/4.jpg');
  background-position: 92% 88%;
  background-size: clamp(280px, 28vw, 460px) auto;
  opacity: 0.24;
  transform: rotate(28deg);
  transform-origin: 92% 88%;
}

/* Location - 3 splats around the map */
.location::before {
  background-image:
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/6.jpg'),
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/2.jpg');
  background-position: 8% 14%, 95% 8%;
  background-size: clamp(300px, 32vw, 500px) auto,
                   clamp(280px, 28vw, 440px) auto;
  opacity: 0.28;
}
.location::after {
  background-image: url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/4.jpg');
  background-position: 12% 95%;
  background-size: clamp(280px, 28vw, 460px) auto;
  opacity: 0.24;
  transform: rotate(16deg);
  transform-origin: 12% 95%;
}

/* Footer */
.footer::before {
  background-image:
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/1.jpg'),
    url('https://pub-4a157e3a00ba4323bd8c0667002f842c.r2.dev/splats/5.jpg');
  background-position: 88% 22%, 18% 78%;
  background-size: clamp(280px, 28vw, 480px) auto,
                   clamp(260px, 24vw, 400px) auto;
  opacity: 0.22;
}

@media (max-width: 700px) {
  .about::before, .about::after,
  .packages::before, .packages::after,
  .gallery::before, .gallery::after,
  .location::before, .location::after,
  .footer::before { opacity: 0.18; }
}

/* package CTA - make clickable affordance clearer */
.pkg__cta { cursor: pointer; }

/* ───────── cookie / GDPR banner ───────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 110;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
  animation: cookieFadeIn 0.35s ease both;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(16px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}
.cookie-banner__body { min-width: 0; }
.cookie-banner__title {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.cookie-banner__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner__btn { padding: 12px 20px; font-size: 13px; }

@media (max-width: 720px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner__inner { grid-template-columns: 1fr; padding: 16px; }
  .cookie-banner__actions { justify-content: flex-end; }
  .cookie-banner__btn { flex: 1; min-width: 130px; }
}
