/* main.css — cleaned/refactored: duplicates merged, heavy decorative texture/blur/micro-animations removed. */

:root {
  --dark: #0a1508;
  --dark-2: #0f1e0d;
  --dark-3: #152b12;
  --light: #f0ece2;
  --light-2: #ffffff;
  --gold: #c9a84c;
  --gold-lt: #e8c97a;
  --gold-dim: #8a6f2e;
  --gold-line: rgba(201,168,76,0.22);
  --gold-faint: rgba(201,168,76,0.08);
  --t-1: #ddd0b0;
  --t-2: #9a8660;
  --t-3: #5c4e32;
  --k-1: #1a1a14;
  --k-2: #4a3d28;
  --k-3: #7a6a50;
  --max: 1100px;
  --pad-h: 4rem;
  --pad-v: 5rem;
  --sep: 1px solid rgba(201,168,76,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--t-1);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.85;
  overflow-x: hidden;
}

.sec-label {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sec-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}

.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--t-1);
  margin-bottom: 1.4rem;
}

.sec-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.sec-title.on-light {
  color: var(--k-1);
}

.sec-title.on-light em {
  color: var(--gold-dim);
}

.content {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad-v) var(--pad-h);
}

.btn-gold {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: .95rem 2.1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--gold-lt);
}

.btn-ghost {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: .95rem 2.1rem;
  border: 1px solid var(--gold-line);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-faint);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem var(--pad-h);
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(10,21,8,0.96);
  border-bottom: var(--sep);
}

.nav-logo {
  font-family: "IM Fell English", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--t-2);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--gold-lt);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 10%, rgba(21,43,18,0.9) 0%, transparent 65%);
}

.hero-border {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,168,76,0.35);
  pointer-events: none;
}

.hero-border::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201,168,76,0.1);
}

.corner {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.5s forwards;
}

.corner.tl {
  top: 12px;
  left: 12px;
}

.corner.tr {
  top: 12px;
  right: 12px;
  transform: scaleX(-1);
}

.corner.bl {
  bottom: 12px;
  left: 12px;
  transform: scaleY(-1);
}

.corner.br {
  bottom: 12px;
  right: 12px;
  transform: scale(-1,-1);
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding: 9rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: riseUp 1s ease 0.5s forwards;
}

.hero-logo-wrap {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: riseUp 1.2s ease 0.8s forwards;
}

.hero-logo-wrap img {
  width: clamp(220px, 38vw, 440px);
  filter: drop-shadow(0 4px 30px rgba(201,168,76,0.22));
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.8rem 0;
  opacity: 0;
  animation: riseUp 1s ease 1.3s forwards;
}

.rule-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.rule-line.r {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

.rule-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-sub {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.42em;
  color: var(--t-1);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: riseUp 1s ease 1.5s forwards;
}

.hero-desc {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--t-2);
  line-height: 1.9;
  max-width: 360px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: riseUp 1s ease 1.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: riseUp 1s ease 1.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: riseUp 1s ease 2.3s forwards;
}

.hero-scroll span {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--t-3);
  text-transform: uppercase;
  text-indent: 0.4em;
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: pulse 2s ease-in-out infinite;
}

.uvod {
  background: #ece4d8;
}

.uvod-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem var(--pad-h) 6rem;
  text-align: center;
  min-height: 92vh;
  justify-content: center;
}

.uvod-keyhole-wrap {
  position: relative;
  width: 320px;
  height: 460px;
  margin-bottom: 4rem;
}

.uvod-keyhole-img {
  width: 320px;
  height: 460px;
  clip-path: url(#kh);
  overflow: hidden;
}

.uvod-keyhole-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uvod-keyhole-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 460px;
  pointer-events: none;
}

.uvod-icon {
  display: block;
  margin: 0 auto 1rem;
  opacity: 0.9;
  width: 160px;
}

.uvod-icon-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--k-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.9rem;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.uvod-icon-label {
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  letter-spacing: 0.22em;
  color: var(--k-1);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.9rem;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(255,255,255,0.92),
    -1px -1px 2px rgba(110,90,60,0.2);
}

.uvod-icon-sub {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.38em;
  color: var(--k-2);
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.uvod-white {
  background: var(--light-2);
  margin: 0 var(--pad-h);
  padding: 2.5rem var(--pad-h) 3rem;
  box-shadow: inset 2px 2px 8px rgba(110,90,60,0.07),
    inset -1px -1px 5px rgba(255,255,255,0.85);
}

.uvod-intro-text {
  max-width: 520px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--k-1);
}

.uvod-photos {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  grid-template-rows: 445px 445px;
  gap: 3px;
  margin-bottom: 2.8rem;
}

.uvod-photo-cell {
  overflow: hidden;
}

.uvod-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}

.uvod-photo-cell:hover img {
  transform: scale(1.04);
}

.uvod-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid rgba(42,32,24,0.1);
  padding-top: 2.5rem;
}

.uvod-col-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--k-2);
  margin-bottom: 0.5rem;
}

.uvod-col-title {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--k-1);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.uvod-col-body {
  font-size: 1rem;
  color: var(--k-1);
  line-height: 1.85;
  font-style: italic;
}

.uvod-green-band {
  background: var(--dark);
  margin: 0 var(--pad-h);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.uvod-band-line {
  flex: 1;
  height: 1px;
  background: var(--gold-line);
}

.uvod-band-text {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.uvod-panorama {
  position: relative;
  height: 1080px;
  overflow: hidden;
}

.uvod-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.uvod-panorama-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
  opacity: 0;
  animation: panoramaReveal 1.4s ease 0.3s forwards;
}

.uvod-panorama-q1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--t-1);
  font-weight: 400;
  line-height: 1.18;
  display: block;
  margin-bottom: 0.4rem;
  text-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.uvod-panorama-q2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold-lt);
  font-style: italic;
  display: block;
  line-height: 1.18;
  text-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.welcome-section {
  background: var(--dark);
  border-top: none;
}

.welcome-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
  padding: calc(3.5rem - 30px) var(--pad-h) 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.welcome-h {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--t-1);
  line-height: 1.18;
  white-space: nowrap;
}

.welcome-right-body {
  font-size: 1rem;
  color: var(--t-1);
  line-height: 1.9;
  max-width: 420px;
  padding-top: 0.6rem;
}

.welcome-photo {
  margin: 0 var(--pad-h) 0;
  max-width: calc(var(--max) + 2 * var(--pad-h));
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.welcome-photo img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.welcome-photo:hover img {
  transform: scale(1.02);
}

.welcome-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin: 4px var(--pad-h) 0;
  max-width: calc(var(--max) + 2 * var(--pad-h));
  margin-left: auto;
  margin-right: auto;
}

.welcome-photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 4px var(--pad-h) 0;
  max-width: calc(var(--max) + 2 * var(--pad-h));
  margin-left: auto;
  margin-right: auto;
}

.welcome-photo-cell {
  overflow: hidden;
  height: 300px;
}

.welcome-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.welcome-photo-cell:hover img {
  transform: scale(1.03);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-faint);
  border-top: var(--sep);
}

.stat-cell {
  background: var(--dark-3);
  padding: 2.2rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

.stat-cell:hover {
  background: var(--dark-2);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--t-2);
  text-transform: uppercase;
}

.full-photo {
  width: 100%;
  height: 560px;
  position: relative;
  overflow: hidden;
}

.full-photo img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.full-photo .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,21,8,0.2) 0%, transparent 35%, transparent 60%, rgba(10,21,8,0.55) 100%);
}

.photo-caption {
  position: absolute;
  bottom: 2rem;
  right: var(--pad-h);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   ZONES — light premium cards + modal
═══════════════════════════════════════════ */

.zones-section {
  background: var(--light);
  border-top: none;
  position: relative;
}

.zones-section .sec-label {
  color: var(--gold-dim);
}

.zones-section .sec-title {
  color: var(--k-1);
}

.zones-section .sec-title em {
  color: var(--gold-dim);
}

.zones-intro {
  color: var(--k-2);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 0.5rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(42,32,24,0.08);
  margin-top: 3rem;
}

.zone-item {
  background: #fff;
  border: 1px solid rgba(42,32,24,0.05);
  padding: 2rem 1.8rem;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 335px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.zone-item:hover,
.zone-item.active {
  background: #f6f2e9;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42,32,24,0.08);
}

.zone-item:hover::before,
.zone-item.active::before {
  background: var(--gold);
}

.zone-num {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.zone-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--k-1);
  margin-bottom: 0.35rem;
}

.zone-desc {
  font-size: 1rem;
  color: var(--k-2);
  line-height: 1.7;
  min-height: 2.2em;
}

.zone-thumb {
  margin-top: auto;
  width: 100%;
  height: 150px;
  overflow: hidden;
  border: 1px solid rgba(42,32,24,0.08);
  background: #f7f4ed;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 6px 16px rgba(42,32,24,0.05);
}

.zone-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.74;
  filter: saturate(0.94) contrast(0.96) brightness(1.03);
  transform: scale(1);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.7s ease;
}

.zone-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0.18), transparent 38%),
              linear-gradient(to top, rgba(255,248,235,0.14), transparent 68%);
}

.zone-item:hover .zone-thumb img,
.zone-item.active .zone-thumb img {
  opacity: 0.94;
  filter: saturate(1.02) contrast(1) brightness(1);
  transform: scale(1.05);
}

.zone-hint {
  margin-top: 0.9rem;
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.zone-hint::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.25s ease;
}

.zone-item:hover .zone-hint::after,
.zone-item.active .zone-hint::after {
  transform: translateX(3px);
}

.zone-soon {
  display: inline-block;
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 2px 7px;
  margin-left: 0.5rem;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .zone-thumb {
    height: 135px;
  }
}

@media (max-width: 640px) {
  .zone-thumb {
    height: 125px;
  }
}


.paketi-section {
  background: var(--dark);
  border-top: var(--sep);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-faint);
  margin-top: 2.5rem;
}

.pkg {
  background: var(--dark);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.pkg:hover {
  background: var(--dark-2);
}

.pkg.featured {
  background: #152b12;
  border-top: 2px solid var(--gold);
}

.pkg-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.pkg-name {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--t-1);
  margin-bottom: 0.4rem;
}

.pkg-price {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--gold-lt);
  line-height: 1;
  margin: 0.5rem 0 0.2rem;
}

.pkg-period {
  font-family: "Cinzel", serif;
  font-size: 12px;
  color: var(--t-2);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pkg-rate {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0;
}

.pkg-line {
  width: 100%;
  height: 1px;
  background: var(--gold-faint);
  margin-bottom: 1rem;
}

.pkg-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.2rem;
}

.pkg-features li {
  font-size: 0.95rem;
  color: var(--t-1);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--gold-faint);
  display: flex;
  gap: 0.4rem;
  line-height: 1.4;
}

.pkg-features li::before {
  content: "·";
  color: var(--gold-dim);
  font-size: 1.1rem;
  line-height: 1.1;
  flex-shrink: 0;
}

.pkg-cta {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  padding: 0.7rem 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
}

.pkg-cta:hover {
  border-color: var(--gold);
  background: var(--gold-faint);
}

.pkg.featured .pkg-cta {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.pkg.featured .pkg-cta:hover {
  background: var(--gold-lt);
}

.policy-strip {
  margin-top: 1.5rem;
  padding: 1.3rem 1.8rem;
  border-left: 2px solid var(--gold-dim);
  background: var(--gold-faint);
}

.policy-strip p {
  font-size: 0.98rem;
  color: var(--t-2);
  font-style: italic;
  line-height: 1.85;
}

.policy-strip strong {
  color: var(--t-2);
  font-style: normal;
}

.kviz-section {
  background: var(--dark);
  border-top: var(--sep);
}

.form-grid {
  display: grid;
  gap: 1px;
  background: var(--gold-faint);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-faint);
}

.form-field {
  background: rgba(255,255,255,0.03);
}

.form-field.full {
  grid-column: 1/-1;
}

.form-label {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--t-2);
  text-transform: uppercase;
  padding: 0.7rem 1.2rem 0;
  display: block;
}

.form-field input, .form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--t-1);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  padding: 0.35rem 1.2rem 0.85rem;
  transition: background 0.2s;
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--t-2);
  font-style: italic;
}

.form-field input:focus, .form-field textarea:focus {
  background: rgba(255,255,255,0.05);
}

.form-field textarea {
  min-height: 95px;
  resize: vertical;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.8rem;
}

.quiz-btns {
  display: flex;
  gap: 0.7rem;
}

.btn-sm {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 0.75rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-sm:hover {
  background: var(--gold-lt);
}

.quiz-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.quiz-success.active {
  display: block;
}

.success-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}

.success-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--t-1);
  margin-bottom: 0.8rem;
}

.success-title em {
  color: var(--gold-lt);
}

.success-text {
  color: var(--t-2);
  font-style: italic;
  max-width: 380px;
  margin: 0 auto 1.2rem;
  line-height: 1.9;
}

.success-num {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.faq-section {
  background: var(--light);
  border-top: var(--sep);
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(110,90,60,0.1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.75);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--k-1);
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  text-align: left;
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color 0.2s;
  text-shadow: 0 1px 1px rgba(255,255,255,0.9),
    0 -1px 1px rgba(110,90,60,0.12);
}

.faq-btn:hover {
  color: var(--gold-dim);
}

.faq-plus {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--gold-dim);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body-inner {
  padding: 0 0 1.3rem;
  color: var(--k-2);
  font-size: 0.93rem;
  font-style: italic;
  line-height: 1.9;
  max-width: 620px;
}

footer {
  border-top: var(--sep);
  background: var(--dark);
  padding: 4rem var(--pad-h) 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: "IM Fell English", serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.96rem;
  font-style: italic;
  color: var(--t-2);
  line-height: 1.75;
  max-width: 210px;
}

.footer-col-title {
  font-family: "Cinzel", serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: var(--t-2);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--t-1);
}

.footer-bottom {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.05);
  padding: 1.1rem var(--pad-h);
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--t-2);
  text-transform: uppercase;
}

.zones-section,
.paketi-section,
.kviz-section,
.stats-bar,
footer {
  position: relative;
}

.zones-section > *,
.paketi-section > *,
.kviz-section > * {
  position: relative;
  z-index: 1;
}

.uvod, .uvod-white, .faq-section {
  background-repeat: repeat;
}

.sec-title.on-light,
.welcome-h {
  text-shadow: 1px 1px 1px rgba(255,255,255,0.92),
    -1px -1px 2px rgba(110,90,60,0.22);
}

.uvod-col-title {
  text-shadow: 0 1px 1px rgba(255,255,255,0.95),
    0 -1px 1px rgba(110,90,60,0.18);
}

.uvod-col-body,
.uvod-intro-text,
.faq-body-inner {
  text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}

.welcome-right-body {
  text-shadow: none;
}

.welcome-photo,
.welcome-photo-grid,
.welcome-photo-grid-2 {
  box-shadow: none;
}

.welcome-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s ease, opacity 0.45s ease;
}

.welcome-extra.open {
  max-height: 2200px;
  opacity: 1;
}

.gallery-toggle-wrap {
  max-width: calc(var(--max) + 2 * var(--pad-h));
  margin: 1.1rem auto var(--pad-v);
  padding: 0 var(--pad-h);
  text-align: center;
}

.gallery-toggle-wrap .btn-ghost {
  min-width: 220px;
}

.zone-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(3, 8, 3, 0.88);
  isolation: isolate;
  min-height: 100vh;
}

.zone-modal.open {
  display: flex;
}

.zone-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: radial-gradient(ellipse at 50% 20%, rgba(21,43,18,0.56), transparent 62%),
    rgba(3,8,3,0.94);
}

.zone-modal-card {
  position: relative;
  z-index: 10000;
  width: min(980px, 100%);
  max-height: min(760px, 90vh);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--light);
  color: var(--k-1);
  border: 1px solid var(--gold-line);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  overflow: hidden;
}

.zone-modal-media {
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
}

.zone-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zone-modal-copy {
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.zone-modal-eyebrow {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.zone-modal-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--k-1);
  margin-bottom: 1rem;
}

.zone-modal-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--k-2);
  margin-bottom: 1.25rem;
}

.zone-modal-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.zone-modal-list li {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--k-1);
  border-bottom: 1px solid rgba(42,32,24,0.08);
  padding-bottom: 0.35rem;
}

.zone-modal-list li::before {
  content: "·";
  color: var(--gold-dim);
  margin-right: 0.45rem;
}

.zone-modal-close-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(42,32,24,0.12);
  background: rgba(240,236,226,0.72);
  color: var(--k-1);
  font-family: "Cinzel", serif;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
}

.zone-modal-close-x:hover {
  background: var(--light-2);
}

body.modal-open {
  overflow: hidden;
}

#clanstvo {
  scroll-margin-top: 84px;
}

.form-select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--t-1);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  padding: 0.45rem 1.2rem 0.9rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: 0;
}

.form-select:hover,
.form-select:focus {
  background: var(--gold-faint);
}

.form-select option {
  background: var(--dark);
  color: var(--t-1);
}

.form-select option:hover,
.form-select option:focus,
.form-select option:active {
  background: var(--gold-line) !important;
  color: var(--t-1) !important;
}

.form-select option:checked {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.interest-nav {
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.packages-grid .pkg {
  cursor: pointer;
}

.interest-nav .quiz-btns {
  margin-left: 0;
}

.gallery-media {
  cursor: pointer;
  position: relative;
}


.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,8,3,0.84);
}

.gallery-modal-card {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: 90vh;
  background: var(--dark);
  border: 1px solid var(--gold-line);
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  overflow: hidden;
}

.gallery-modal-card img {
  width: 100%;
  max-height: 88vh;
  display: block;
}

.gallery-modal-card img {
  object-fit: contain;
  background: var(--dark);
}


.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  z-index: 10;
  border: 1px solid var(--gold-line);
  background: rgba(10,21,8,0.74);
  color: var(--gold-lt);
  font-family: "Cinzel", serif;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gallery-media img {
  cursor: pointer;
}

.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 56px;
  border: 1px solid var(--gold-line);
  background: rgba(10,21,8,0.72);
  color: var(--gold-lt);
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

.gallery-modal-arrow:hover {
  background: rgba(21,43,18,0.92);
  border-color: var(--gold);
}

.gallery-modal-prev {
  left: 1rem;
}

.gallery-modal-next {
  right: 1rem;
}


.welcome-photo-grid,
.welcome-photo-grid-2 {
  align-items: stretch;
}

.welcome-photo-cell {
  height: auto !important;
  aspect-ratio: 4 / 3;
}

.welcome-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.welcome-photo.gallery-media {
  margin-bottom: 4px;
}

.welcome-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.welcome-gallery-strip .welcome-photo-cell {
  height: auto !important;
  aspect-ratio: 4 / 3;
}

.welcome-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   HOME EVENTS TEASER
═══════════════════════════════════════════ */

.home-events-teaser {
  background: var(--dark-2);
  border-top: var(--sep);
  position: relative;
  overflow: hidden;
}

.home-events-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(21,43,18,0.55) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.home-events-teaser > * {
  position: relative;
  z-index: 1;
}

.home-events-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.35);

  background:
    linear-gradient(
      90deg,
      rgba(8,18,8,0.94) 0%,
      rgba(8,18,8,0.84) 34%,
      rgba(8,18,8,0.48) 66%,
      rgba(8,18,8,0.12) 100%
    ),
    url("../assets/images/events_cover.webp");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  padding: 3.4rem;
}

/* unutrašnji hero-style border */
.home-events-box::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
  z-index: 1;
}

.home-events-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.home-events-copy p:not(.sec-label) {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

.home-events-icon,
.home-events-icon img {
  display: none;
}

/* centriranje background image-a na mobilnoj */
@media (max-width: 640px) {
  .home-events-box {
    background-position: 67% center;
  }
}

/* ═══════════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════════ */

.events-page-hero {
  min-height: 82vh;
  background: var(--dark);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.events-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.events-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .events-page-hero-bg img {
    object-position: 38% center;
  }
}

.events-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(21,43,18,0.32) 0%, transparent 58%),
    linear-gradient(to bottom, rgba(10,21,8,0.18) 0%, rgba(10,21,8,0.35) 58%, rgba(10,21,8,0.62) 100%);
}

.events-page-hero .hero-border {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,168,76,0.35);
  pointer-events: none;
  z-index: 3;
}

.events-page-hero .hero-border::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201,168,76,0.1);
}

.events-page-hero .corner {
  z-index: 4;
}

.events-page-hero .hero-inner {
  position: relative;
  z-index: 5;
  padding-top: 8rem;
}


.events-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 1.02;
  font-weight: 400;
  color: var(--t-1);
  margin-bottom: 1.2rem;
  text-shadow: 0 8px 28px rgba(0,0,0,0.38);
}

.events-title em {
  color: var(--gold-lt);
  font-style: italic;
}

.events-desc {
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  margin: 0 auto 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.95);
  line-height: 1.9;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}

/* Events hero entrance */
.events-page-hero .events-title {
  opacity: 0;
  animation: eventsHeroFadeUp 0.9s ease 0.25s forwards;
}

.events-page-hero .events-desc {
  opacity: 0;
  animation: eventsHeroFadeUp 0.85s ease 0.55s forwards;
}

.events-page-hero .hero-btns {
  opacity: 0;
  animation: eventsHeroFadeUp 0.9s ease 1.55s forwards;
}

@keyframes eventsHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.events-types,
.events-gallery,
.events-form-section {
  background: var(--dark);
  border-top: var(--sep);
  position: relative;
}

.events-types::before,
.events-gallery::before,
.events-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(21,43,18,0.58) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.events-types > *,
.events-gallery > *,
.events-form-section > * {
  position: relative;
  z-index: 1;
}

.events-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.14);
  margin-top: 2.5rem;
}

.events-type-card {
  background: #11240f;
  border-top: 1px solid rgba(201,168,76,0.45);
  padding: 2.1rem 1.7rem;
  min-height: 270px;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.events-type-card:hover {
  background: #152b12;
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

.events-type-kicker {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.95);
  margin-bottom: 0.9rem;
}

.events-type-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--t-1);
  margin-bottom: 0.9rem;
}

.events-type-body {
  color: rgba(221,208,176,0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.events-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 2.5rem;
}

.events-gallery-item {
  position: relative;
  overflow: hidden;
  height: 380px;
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.08);
}

.events-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.08), transparent 35%),
    linear-gradient(to top, rgba(10,21,8,0.22), transparent 55%);
}

.events-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
  filter: saturate(1.02) contrast(1);
  transition: transform 1s ease, opacity 0.35s ease, filter 0.35s ease;
}

.events-gallery-item:hover img {
  transform: scale(1.035);
  opacity: 1;
  filter: saturate(1.05) contrast(1.02);
}

.member-note {
  background: #10210e;
  border-top: var(--sep);
  border-bottom: var(--sep);
}

.member-note-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.24);
  background: rgba(255,255,255,0.025);
}

.member-note-box p {
  color: rgba(221,208,176,0.72);
  line-height: 1.9;
}

.events-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.kontakt-info-label {
  font-family: "Cinzel", serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.kontakt-info-val {
  color: var(--t-1);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .events-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-gallery-grid {
    grid-template-columns: 1fr;
  }

  .events-gallery-item {
    height: 320px;
  }

  .events-contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .events-page-hero {
    min-height: 78vh;
  }

  .events-page-hero .hero-inner {
    padding: 7rem 1.5rem 4rem;
  }

  .events-title {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .events-desc {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .events-type-grid {
    grid-template-columns: 1fr;
  }

  .events-type-card {
    min-height: auto;
    padding: 1.6rem 1.35rem;
  }

  .events-type-card:nth-child(1) {
    background: #152b12;
    border-top-color: var(--gold);
  }

  .events-gallery-item {
    height: 260px;
  }

  .member-note-box {
    padding: 1.4rem;
  }
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.reveal-fade.vis {
  opacity: 1;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.vis > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.vis > *:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger.vis > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.vis > *:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger.vis > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.vis > *:nth-child(6) { transition-delay: 0.30s; }

@keyframes panoramaReveal {
  from { opacity: 0; transform: translateY(calc(-50% + 22px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}

@keyframes riseUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

@keyframes pulse { 0%,100% { opacity:0.25; } 50% { opacity:1; } }

@media (max-height: 820px) and (min-width: 961px) {
  .zone-modal {
    padding: 1rem;
  }

  .zone-modal-card {
    width: min(980px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    grid-template-columns: 0.95fr 1.05fr;
  }

  .zone-modal-media {
    min-height: 0;
    height: calc(100vh - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .zone-modal-copy {
    padding: 2.2rem 2.4rem;
    max-height: calc(100vh - 2rem);
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .zone-item {
    min-height: 350px;
  }

  .zone-desc {
    min-height: 4.2em;
  }

  .zone-modal {
    padding: 1rem;
  }

  .zone-modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .zone-modal-media {
    min-height: 220px;
    max-height: 34vh;
  }

  .zone-modal-copy {
    padding: 2rem 1.4rem;
    justify-content: flex-start;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .zone-item {
    min-height: 190px;
    padding: 1.35rem 1rem;
  }

  .zone-desc {
    min-height: auto;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .zone-thumb {
    display: none;
  }

  .zone-hint {
    margin-top: auto;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .zone-modal {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
  }

  .zone-modal-card {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    border: none;
    overflow: hidden;
  }

  .zone-modal-media {
    flex: 0 0 26vh;
    min-height: 150px;
    max-height: 210px;
  }

  .zone-modal-copy {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 1.25rem 1.25rem 1.4rem;
  }

  .zone-modal-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
  }

  .zone-modal-title {
    font-size: 1.8rem;
    line-height: 1.08;
    margin-bottom: 0.7rem;
  }

  .zone-modal-body {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
  }

  .zone-modal-list {
    gap: 0.2rem;
    margin-bottom: 1rem;
  }

  .zone-modal-list li {
    font-size: 10px;
    letter-spacing: 0.15em;
    line-height: 1.35;
    padding-bottom: 0.4rem;
  }

  .zone-modal-copy .btn-ghost {
    width: 100%;
    text-align: center;
    margin-top: 0.25rem;
  }

  .zone-modal-close-x {
    position: fixed;
    top: 0.7rem;
    right: 0.7rem;
    width: 36px;
    height: 36px;
    background: rgba(240,236,226,0.88);
  }
}

@media (max-width: 960px) {
  :root {
    --pad-h: 1.5rem;
    --pad-v: 3rem;
  }

  nav .nav-links {
    display: none;
  }

  .uvod-white {
    margin: 0 0;
  }

  .uvod-green-band {
    margin: 0;
  }

  .uvod-photos {
    height: 280px;
  }

  .uvod-cols {
    grid-template-columns: 1fr;
  }

  .welcome-top {
    grid-template-columns: 1fr;
  }

  .welcome-h {
    white-space: normal;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .interest-nav .quiz-btns {
    width: 100%;
  }

  .interest-nav .btn-sm {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .uvod-white {
    padding: 1.4rem 0.65rem 2rem;
  }

  .uvod-intro-text {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    padding: 0 0.45rem;
  }

  .uvod-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    height: auto;
    gap: 2px;
    margin-bottom: 1.6rem;
  }

  .uvod-photo-cell {
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .uvod-photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .uvod-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.5rem 0.45rem 0;
    border-top: 1px solid rgba(42,32,24,0.12);
  }

  .uvod-col-title {
    margin-bottom: 0.35rem;
  }

  .uvod-col-body {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .welcome-photo-grid,
    .welcome-photo-grid-2 {
    grid-template-columns: 1fr;
  }

  .welcome-photo-cell {
    height: 260px !important;
  }

  .gallery-modal {
    padding: 0.75rem;
  }

  .gallery-modal-card {
    max-height: 86vh;
  }
}

@media (max-width: 640px) {
  .gallery-modal-arrow {
    width: 40px;
    height: 48px;
    font-size: 2rem;
  }

  .gallery-modal-prev {
    left: 0.5rem;
  }

  .gallery-modal-next {
    right: 0.5rem;
  }
}

@media (max-width: 640px) {
  .welcome-photo-cell {
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

}

@media (max-width: 640px) {
  .welcome-photo.gallery-media {
    margin-left: 0;
    margin-right: 0;
  }

  .welcome-photo-grid.welcome-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-left: 0;
    margin-right: 0;
  }

  .welcome-gallery-strip .welcome-photo-cell {
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

}

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

  .zone-thumb {
    display: none;
  }

  .zone-item {
    min-height: 190px;
    padding: 1.35rem 1rem;
  }

  .zone-num {
    font-size: 11px;
    letter-spacing: 0.24em;
    margin-bottom: 0.55rem;
  }

  .zone-name {
    font-size: 1rem;
    line-height: 1.25;
  }

  .zone-desc {
    min-height: auto;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .zone-hint {
    margin-top: auto;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .zone-item:last-child {
    grid-column: span 2;
  }
}

@media (max-height: 820px) and (min-width: 961px) {
  .zone-modal {
    padding: 1rem;
    align-items: center;
  }

  .zone-modal-card {
    width: min(980px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    grid-template-columns: 0.95fr 1.05fr;
  }

  .zone-modal-media {
    min-height: 0;
    height: calc(100vh - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .zone-modal-copy {
    padding: 2.2rem 2.4rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    justify-content: flex-start;
  }

  .zone-modal-title {
    font-size: clamp(1.9rem, 3.2vw, 2.45rem);
  }

  .zone-modal-body {
    font-size: 1rem;
    line-height: 1.7;
  }

  .zone-modal-list {
    margin-bottom: 1.1rem;
  }

  .zone-modal-close-x {
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 960px) {
  .zone-modal {
    align-items: center;
    padding: 1rem;
  }

  .zone-modal-card {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .zone-modal-media {
    min-height: 220px;
    max-height: 34vh;
  }

  .zone-modal-copy {
    max-height: none;
    overflow: visible;
  }

  .zone-modal-close-x {
    position: sticky;
    top: 0.75rem;
    margin-left: auto;
  }
}

@media (max-width: 960px) {
  .home-events-box {
    padding: 2.2rem 1.5rem;
  }

  .home-events-copy {
    max-width: 100%;
  }

  .home-events-copy .sec-label,
    .home-events-copy .sec-title,
    .home-events-copy p,
    .home-events-copy a {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 960px) {
  .events-type-grid,
    .events-gallery-grid,
    .events-contact-grid {
    grid-template-columns: 1fr;
  }

  .events-contact-grid {
    gap: 2.2rem;
  }

  .events-gallery-item {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .events-page-hero {
    min-height: 88vh;
  }

  .events-page-hero .hero-inner {
    padding-top: 7rem;
  }
}

@media (max-width: 640px) {
  .events-gallery-item img,
    .welcome-photo img,
    .welcome-photo-cell img,
    .events-page-hero-bg img {
    animation: softImageReveal 1.2s ease both;
  }

  .events-type-card,
    .zone-item,
    .pkg,
    .home-events-box {
    animation: softCardReveal 0.9s ease both;
  }

  .events-type-card:nth-child(2),
    .zone-item:nth-child(2),
    .pkg:nth-child(2) {
    animation-delay: 0.08s;
  }

  .events-type-card:nth-child(3),
    .zone-item:nth-child(3),
    .pkg:nth-child(3) {
    animation-delay: 0.14s;
  }

  .events-type-card:nth-child(4),
    .zone-item:nth-child(4),
    .pkg:nth-child(4) {
    animation-delay: 0.2s;
  }
}

/* ═══════════════════════════════════════════
   MOBILE ACTIVE CUES
   Default hover-like states for key cards on touch devices
═══════════════════════════════════════════ */

@media (max-width: 640px) {
  .zones-grid .zone-item:nth-child(1) {
    background: #f6f2e9;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42,32,24,0.08);
  }

  .zones-grid .zone-item:nth-child(1)::before {
    background: var(--gold);
  }

  .zones-grid .zone-item:nth-child(1) .zone-thumb img {
    opacity: 1;
    filter: saturate(1) contrast(1) brightness(1);
    transform: scale(1.05);
  }

  .zones-grid .zone-item:nth-child(1) .zone-hint::after {
    transform: translateX(3px);
  }

  .events-type-grid .events-type-card:nth-child(1) {
    background: #152b12;
    border-top-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  }
}

/* Mobile events hero polish */
@media (max-width: 768px) {
  .events-page-hero-bg img {
    object-position: 68% center;
  }
}

@media (max-width: 640px) {
  .events-title {
    font-size: clamp(2.45rem, 10.5vw, 3.85rem);
    line-height: 1.04;
  }

  .events-page-hero .hero-btns {
    gap: 0.8rem;
  }

  .events-page-hero .btn-gold,
  .events-page-hero .btn-ghost {
    padding: 0.85rem 1.35rem;
    font-size: 11px;
    letter-spacing: 0.14em;
  }
}

/* Hyperlinks prikaz da ne bude plavo/ browser default */
.faq-body-inner a,
.policy-strip a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,.35);
  transition: all .25s ease;
}

.faq-body-inner a:hover,
.policy-strip a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/*Prikaz galerije na mobilnoj*/

@media (max-width: 640px) {
  .welcome-extra {
    display: block;
    padding: 0 0.5rem;
  }

  .welcome-extra.open {
    max-height: 3600px;
  }

  .welcome-extra .welcome-photo-grid,
  .welcome-extra .welcome-photo-grid-2 {
    display: grid;
    gap: 3px;
    width: 100%;
    max-width: none;
    margin: 3px 0 0;
  }

  /* Parovi slika ostaju u 2 kolone na mobilnoj */
  .welcome-extra .welcome-photo-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Zadnja 3 thumb-a idu u istom redu, kao mali square grid */
  .welcome-extra .welcome-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .welcome-extra .welcome-photo-cell {
    height: auto !important;
    aspect-ratio: 1 / 1;
    margin: 0;
  }

  .welcome-extra .welcome-photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/*swipe slike efekti u galerij*/

.gallery-modal-card img {
  animation: galleryImageIn 0.28s ease both;
  will-change: opacity, transform;
}

@keyframes galleryImageIn {
  from {
    opacity: 0;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .gallery-modal-card img {
    animation: galleryImageInMobile 0.32s ease both;
  }

  @keyframes galleryImageInMobile {
    from {
      opacity: 0;
      transform: translateX(10px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }
}
.gallery-modal,
.gallery-modal-card,
#gallery-modal-content {
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   MODAL SCROLL LOCK + MOBILE STABILITY
   Final override for iOS/mobile modal behavior
═══════════════════════════════════════════ */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.gallery-modal,
.zone-modal {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding:
    calc(env(safe-area-inset-top) + 1rem)
    1rem
    calc(env(safe-area-inset-bottom) + 1rem);
}

.gallery-modal.open,
.zone-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-modal-card {
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.gallery-modal-card {
  max-height: calc(100dvh - 2rem);
  overflow: hidden;
}

#gallery-modal-content {
  overflow: hidden;
}

.gallery-modal-card img {
  max-height: calc(100dvh - 2rem);
  object-fit: contain;
}


/* Mobile modal stability */
@media (max-width: 640px) {
  .gallery-modal,
  .zone-modal {
    padding:
      calc(env(safe-area-inset-top) + 0.75rem)
      0.75rem
      calc(env(safe-area-inset-bottom) + 0.75rem);
    align-items: center;
    justify-content: center;
  }

  .zone-modal-card {
    width: min(100%, 92vw);
    height: auto;
    max-height: calc(100dvh - 1.5rem);
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--gold-line);
    overflow-y: auto;
  }

  .zone-modal-media {
    min-height: 0;
    height: auto;
    max-height: 30dvh;
  }

  .zone-modal-media img {
    height: auto;
    max-height: 30dvh;
    object-fit: cover;
  }

  .zone-modal-copy {
    min-height: 0;
    overflow: visible;
    padding: 1.45rem 1.25rem 1.5rem;
  }

  .zone-modal-close-x {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
  }

  .gallery-modal-card {
    width: min(100%, 94vw);
    max-height: calc(100dvh - 1.5rem);
  }

  .gallery-modal-card img {
    max-height: calc(100dvh - 1.5rem);
  }

}

/* ═══════════════════════════════════════════
   MODAL VIEWPORT STABILITY — Chrome/iOS/Android fix
═══════════════════════════════════════════ */

body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.gallery-modal,
.zone-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: var(--modal-vh, 100dvh);
  max-height: var(--modal-vh, 100dvh);
  overflow: hidden;
  overscroll-behavior: contain;
}

.gallery-modal.open,
.zone-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zone-modal-card {
  max-height: calc(var(--modal-vh, 100dvh) - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.gallery-modal-card {
  max-height: calc(var(--modal-vh, 100dvh) - 2rem);
}

@media (max-width: 640px) {
  .gallery-modal,
  .zone-modal {
    padding: 0.75rem;
    height: var(--modal-vh, 100dvh);
    max-height: var(--modal-vh, 100dvh);
    align-items: center;
    justify-content: center;
  }

  .zone-modal-card {
    width: min(100%, 92vw);
    height: auto;
    max-height: calc(var(--modal-vh, 100dvh) - 1.5rem);
    overflow-y: auto;
  }

  .gallery-modal-card {
    width: min(100%, 94vw);
    max-height: calc(var(--modal-vh, 100dvh) - 1.5rem);
  }
}

/* ═══════════════════════════════════════════
   GALLERY ARROWS — subtle mobile hint
═══════════════════════════════════════════ */

@media (max-width: 640px) {
  .gallery-modal-arrow {
    width: 34px;
    height: 46px;
    border: 1px solid rgba(201,168,76,0.22);
    background: rgba(10,21,8,0.28);
    color: rgba(232,201,122,0.62);
    font-size: 1.65rem;
    opacity: 0.42;
    backdrop-filter: blur(2px);
    transition:
      opacity 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .gallery-modal-prev {
    left: 0.45rem;
  }

  .gallery-modal-next {
    right: 0.45rem;
  }

  .gallery-modal-arrow:active {
    opacity: 0.85;
    background: rgba(10,21,8,0.54);
    border-color: rgba(201,168,76,0.45);
  }
}

/* Chrome/iOS/Android visible viewport modal alignment */
.gallery-modal,
.zone-modal {
  top: var(--modal-top, 0px);
  bottom: auto;
  height: var(--modal-vh, 100dvh);
  max-height: var(--modal-vh, 100dvh);
}

.gallery-modal.open,
.zone-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .gallery-modal,
  .zone-modal {
    top: var(--modal-top, 0px);
    height: var(--modal-vh, 100dvh);
    max-height: var(--modal-vh, 100dvh);
    padding: 0.75rem;
  }

  .zone-modal-card {
    max-height: calc(var(--modal-vh, 100dvh) - 1.5rem);
  }

  .gallery-modal-card {
    max-height: calc(var(--modal-vh, 100dvh) - 1.5rem);
  }
}

/* ═══════════════════════════════════════════
   GALLERY TOUCH HINTS — subtle premium cue
═══════════════════════════════════════════ */

/* Mali signal da se fotografija može otvoriti */
.welcome-section .gallery-media::after {
  content: "⤢";
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 4;

  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;

  font-family: "Cinzel", serif;
  font-size: 1rem;
  line-height: 1;
  color: rgba(232,201,122,0.82);

  background: rgba(10,21,8,0.46);
  border: 1px solid rgba(201,168,76,0.28);
  backdrop-filter: blur(3px);

  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
  pointer-events: none;
}

.welcome-section .gallery-media:hover::after {
  opacity: 0.82;
  transform: translateY(0);
  background: rgba(10,21,8,0.62);
  border-color: rgba(201,168,76,0.42);
}

/* Na mobilnoj neka bude uvijek vidljivo, ali jako suptilno */
@media (max-width: 640px) {
  .welcome-section .gallery-media::after {
    width: 28px;
    height: 28px;
    right: 0.45rem;
    bottom: 0.45rem;

    font-size: 0.82rem;
    opacity: 0.85;
    transform: none;

    background: rgba(10,21,8,0.38);
    border-color: rgba(201,168,76,0.22);
  }

  .welcome-photo.gallery-media::after {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 32px;
    height: 32px;
    opacity: 0.68;
  }
}

/* Hint unutar modala */
.gallery-swipe-hint {
  position: absolute;
  left: 50%;
  bottom: 0.95rem;
  transform: translateX(-50%);
  z-index: 12;

  padding: 0.42rem 0.8rem;
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;

  color: rgba(232,201,122,0.78);
  background: rgba(10,21,8,0.58);
  border: 1px solid rgba(201,168,76,0.24);
  backdrop-filter: blur(4px);

  pointer-events: none;
  opacity: 0;
}

/* Prikaži swipe hint samo na mobilnoj */
@media (max-width: 640px) {
  .gallery-modal.open .gallery-swipe-hint {
    animation: swipeHintSoft 4.2s ease forwards;
  }

  @keyframes swipeHintSoft {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(6px);
    }

    18% {
      opacity: 0.72;
      transform: translateX(-50%) translateY(0);
    }

    72% {
      opacity: 0.72;
      transform: translateX(-50%) translateY(0);
    }

    100% {
      opacity: 0;
      transform: translateX(-50%) translateY(4px);
    }
  }
}

/* Na desktopu nema potrebe za swipe tekstom */
@media (min-width: 641px) {
  .gallery-swipe-hint {
    display: none;
  }
}


/* Safety: uvod/community grid nikad ne dobija gallery expand ikonicu */
.uvod .gallery-media::after,
.uvod .gallery-media::after,
.uvod-photo-cell::after,
.uvod-photo-cell.gallery-media::after,
.uvod-photos .gallery-media::after,
.uvod-photos .gallery-media::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/*print pravila dokumenta*/
.rules-signature {
  display: none;
}

@media print {
  nav,
  .rules-sidebar,
  .rules-cta,
  footer,
  .footer-bottom,
  .rules-back,
  .print-rules-btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .rules-page,
  .rules-body,
  .rules-content {
    background: #fff;
    color: #111;
  }

  .rule-section {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .rules-signature {
    display: block;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #999;
    color: #111;
    font-style: italic;
    line-height: 2;
  }
}

/* ═══════════════════════════════════════════
   ZONES — faster hover + lighter responsive animation
   Scope: only Zone cards/grid. Intro and other sections untouched.
═══════════════════════════════════════════ */

/* Brži reveal samo za Zone grid */
.zones-grid.reveal-stagger > * {
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.zones-grid.reveal-stagger.vis > *:nth-child(2) { transition-delay: 0.035s; }
.zones-grid.reveal-stagger.vis > *:nth-child(3) { transition-delay: 0.07s; }
.zones-grid.reveal-stagger.vis > *:nth-child(4) { transition-delay: 0.105s; }
.zones-grid.reveal-stagger.vis > *:nth-child(5) { transition-delay: 0.14s; }
.zones-grid.reveal-stagger.vis > *:nth-child(6) { transition-delay: 0.175s; }
.zones-grid.reveal-stagger.vis > *:nth-child(n+7) { transition-delay: 0.21s; }

/* Brži hover na kartici */
.zone-item {
  transition:
    background-color 0.14s ease,
    border-color 0.14s ease,
    box-shadow 0.14s ease,
    transform 0.14s ease;
}

.zone-item::before {
  transition: background-color 0.12s ease;
}

.zone-item:hover,
.zone-item.active {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(42,32,24,0.075);
}

/* Najveći delay je bio na slici: transform 0.7s + filter transition.
   Ovo ga skraćuje i uklanja skupi filter transition. */
.zone-thumb img {
  transition:
    opacity 0.14s ease,
    transform 0.18s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.zone-item:hover .zone-thumb img,
.zone-item.active .zone-thumb img {
  opacity: 0.94;
  transform: scale(1.025);
}

/* Strelica reaguje odmah */
.zone-hint::after {
  transition: transform 0.12s ease;
}

/* Touch/mobile: bez dodatne globalne softCardReveal animacije na Zone karticama */
@media (max-width: 640px) {
  .zones-grid .zone-item {
    animation: none !important;
    animation-delay: 0s !important;
    transition:
      background-color 0.14s ease,
      border-color 0.14s ease,
      box-shadow 0.14s ease;
  }

  .zones-grid .zone-item:hover,
  .zones-grid .zone-item.active,
  .zones-grid .zone-item:nth-child(1) {
    transform: none;
    box-shadow: none;
  }

  .zones-grid .zone-item:nth-child(1) .zone-thumb img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════
   UVOD — scroll repaint / mobile stability patch
   Scope: only intro/uvod + panorama responsive behavior.
   Purpose: remove overflow/compositing conditions that can create a dark
   rectangle/triangle artifact while scrolling.
═══════════════════════════════════════════ */

/* Keep the white intro panel in normal paint flow.
   This avoids promoting the whole large image grid into a translated opacity layer. */
.uvod-white.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.uvod-white {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: var(--light-2);
}

/* Make sure the intro photo grid never paints outside its own panel. */
.uvod-photos {
  overflow: hidden;
  isolation: isolate;
}

.uvod-photo-cell {
  min-width: 0;
  min-height: 0;
  background: var(--light-2);
}

.uvod-photo-cell img {
  backface-visibility: hidden;
}

/* Current CSS had height:280px on <=960px while desktop rows stayed 445px + 445px.
   This can leave an overflowing grid layer between 641px and 960px. */
@media (max-width: 960px) and (min-width: 641px) {
  .uvod-photos {
    height: 280px;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    overflow: hidden;
  }

  .uvod-photo-cell {
    height: auto !important;
  }
}

/* Mobile intro grid: keep the newer compact grid, but disable image transform on touch
   to avoid scroll-time compositing artifacts. */
@media (max-width: 640px) {
  .uvod-white {
    margin: 0;
    padding: 1.4rem 0.65rem 2rem;
  }

  .uvod-photos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none !important;
    height: auto !important;
    gap: 2px;
    margin-bottom: 1.6rem;
    overflow: hidden;
  }

  .uvod-photo-cell {
    height: auto !important;
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .uvod-photo-cell img,
  .uvod-photo-cell:hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
    transition: none !important;
  }

  /* If panorama was changed so text sits below image, this keeps it in normal flow
     and removes overlay/composited movement on mobile. */
  .uvod-panorama {
    height: auto;
    overflow: visible;
    background: var(--dark);
  }

  .uvod-panorama img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    transform: none !important;
  }

  .uvod-panorama-text {
    position: static;
    transform: none !important;
    opacity: 1;
    animation: none;
    padding: 1.55rem 1rem 2.2rem;
    background: var(--dark);
  }
}

/* ═══════════════════════════════════════════
   UVOD — restore stable original/mobile crop
   Goal: remove scroll rectangle without causing image re-load gaps.
   Keeps intro text columns below images on mobile.
═══════════════════════════════════════════ */

/* Dark rectangle fix, but without contain/isolation/overflow tricks that can
   make images repaint separately on scroll. */
.uvod-white.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.uvod-white.reveal.vis {
  opacity: 1 !important;
  transform: none !important;
}

.uvod-white {
  overflow: visible !important;
  contain: none !important;
  isolation: auto !important;
}

.uvod-photos {
  overflow: hidden;
}

.uvod-photo-cell {
  min-width: 0;
  min-height: 0;
  background: #ece4d8;
  overflow: hidden;
}

.uvod-photo-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  animation: none !important;
}

/* Tablet: keep original compact crop, but fix the actual cause of overlap:
   desktop rows 445px + 445px inside a 280px area. */
@media (max-width: 960px) and (min-width: 641px) {
  .uvod-photos {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1.05fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 280px;
    gap: 3px;
    margin-bottom: 2.8rem;
    overflow: hidden;
  }

  .uvod-photo-cell {
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .uvod-cols {
    position: relative;
    z-index: 1;
    clear: both;
  }
}

/* Mobile: bring back the vertical / 9:16 crop feeling, but let the grid define
   its own height so the text columns always start below the photos. */
@media (max-width: 640px) {
  .uvod-white {
    margin: 0;
    padding: 1.4rem 0.65rem 2rem;
  }

  .uvod-intro-text {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
    padding: 0 0.45rem;
  }

  .uvod-photos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    height: auto !important;
    gap: 2px;
    margin-bottom: 1.6rem;
    overflow: visible;
  }

  .uvod-photo-cell {
    height: auto !important;
    aspect-ratio: 9 / 16 !important;
    overflow: hidden;
    background: #ece4d8;
  }

  .uvod-photo-cell img,
  .uvod-photo-cell:hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .uvod-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.5rem 0.45rem 0;
    border-top: 1px solid rgba(42,32,24,0.12);
    position: relative;
    z-index: 1;
    clear: both;
  }

  .uvod-col-title {
    margin-bottom: 0.35rem;
  }

  .uvod-col-body {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  /* If this panorama section was part of the 9:16 mobile crop change,
     keep the crop but place the text below, not over the photo. */
  .uvod-panorama {
    height: auto !important;
    overflow: visible !important;
    background: var(--dark);
  }

  .uvod-panorama img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: none !important;
  }

  .uvod-panorama-text {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    padding: 1.55rem 1rem 2.2rem;
    background: var(--dark);
  }
}

/* ═══════════════════════════════════════════
   ZONES — faster hover + lighter responsive animation
   Scope: only Zone cards/grid.
═══════════════════════════════════════════ */

.zones-grid.reveal-stagger > * {
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.zones-grid.reveal-stagger.vis > *:nth-child(2) { transition-delay: 0.035s; }
.zones-grid.reveal-stagger.vis > *:nth-child(3) { transition-delay: 0.07s; }
.zones-grid.reveal-stagger.vis > *:nth-child(4) { transition-delay: 0.105s; }
.zones-grid.reveal-stagger.vis > *:nth-child(5) { transition-delay: 0.14s; }
.zones-grid.reveal-stagger.vis > *:nth-child(6) { transition-delay: 0.175s; }
.zones-grid.reveal-stagger.vis > *:nth-child(n+7) { transition-delay: 0.21s; }

.zone-item {
  transition:
    background-color 0.14s ease,
    border-color 0.14s ease,
    box-shadow 0.14s ease,
    transform 0.14s ease;
}

.zone-item::before {
  transition: background-color 0.12s ease;
}

.zone-item:hover,
.zone-item.active {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(42,32,24,0.075);
}

.zone-thumb img {
  transition:
    opacity 0.14s ease,
    transform 0.18s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.zone-item:hover .zone-thumb img,
.zone-item.active .zone-thumb img {
  opacity: 0.94;
  transform: scale(1.025);
}

.zone-hint::after {
  transition: transform 0.12s ease;
}

@media (max-width: 640px) {
  .zones-grid .zone-item {
    animation: none !important;
    animation-delay: 0s !important;
    transition:
      background-color 0.14s ease,
      border-color 0.14s ease,
      box-shadow 0.14s ease;
  }

  .zones-grid .zone-item:hover,
  .zones-grid .zone-item.active,
  .zones-grid .zone-item:nth-child(1) {
    transform: none;
    box-shadow: none;
  }

  .zones-grid .zone-item:nth-child(1) .zone-thumb img {
    transform: none;
  }
}

/* ═══════════════════════════════════════════
   UVOD PANORAMA — mobile overlay animation restore
   Keeps the intro (i/ii/iii) text below photos, but restores the
   "Dvije kuće..." text over the panorama image with a soft reveal.
═══════════════════════════════════════════ */

@keyframes mobilePanoramaTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .uvod-panorama {
    position: relative !important;
    height: min(92vh, 760px) !important;
    min-height: 560px;
    overflow: hidden !important;
    background: var(--dark);
  }

  .uvod-panorama img {
    width: 100%;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: none !important;
  }

  .uvod-panorama::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 50% 45%, rgba(10,21,8,0.08) 0%, transparent 52%),
      linear-gradient(to bottom, rgba(10,21,8,0.16) 0%, rgba(10,21,8,0.18) 45%, rgba(10,21,8,0.48) 100%);
  }

  .uvod-panorama-text {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2;
    text-align: center;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    animation: none !important;
    padding: 0 1rem !important;
    background: transparent !important;
  }

  .uvod-panorama-q1,
  .uvod-panorama-q2 {
    opacity: 0;
    transform: translateY(18px);
    will-change: opacity, transform;
  }

  .uvod-panorama.vis .uvod-panorama-q1,
  .uvod-panorama.reveal-fade.vis .uvod-panorama-q1 {
    animation: mobilePanoramaTitleIn 2.5s ease forwards;
  }

  .uvod-panorama.vis .uvod-panorama-q2,
  .uvod-panorama.reveal-fade.vis .uvod-panorama-q2 {
    animation: mobilePanoramaTitleIn 2.5s ease 0.53s forwards;
  }
}

/* dodatak EVENTS TYPES — 4 cards layout */
.events-type-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .events-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .events-type-grid {
    grid-template-columns: 1fr;
  }
}

/* PAKETI — 3 package layout izmjena*/
.packages-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Tablet: keep cards readable */
@media (max-width: 960px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile: one card per row, no placeholders */
@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    background: transparent;
  }

  .packages-grid .pkg {
    background: rgba(255,255,255,0.018);
    border: 1px solid rgba(201,168,76,0.14);
  }

  .packages-grid .pkg.featured {
    background: #152b12;
    border: 1px solid rgba(201,168,76,0.34);
    border-top: 2px solid var(--gold);
  }
}

/* STATS — area value visual balance */
.stat-num-area {
  font-size: 2.35rem;
  letter-spacing: -0.02em;
}

.stat-num-area sup {
  font-size: 0.48em;
  vertical-align: super;
  margin-left: 0.08em;
}

/* STATS — area value visual balance */
.stat-num-area {
  font-size: 2.35rem;
  letter-spacing: -0.02em;
}

.stat-num-area sup {
  font-size: 0.48em;
  vertical-align: super;
  margin-left: 0.08em;
}


/* Packages- naglasak */
.packages-intro {
  color: var(--t-2);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 0.5rem;
}

.packages-intro span {
  color: var(--gold);
  font-style: italic;
}


/* Lista cekanja- naglasak */
.membership-intro {
  color: var(--t-2);
  font-size: 1rem;
  max-width: 690px;
  margin-top: -0.4rem;
}

.membership-intro span {
  color: var(--gold);
  font-style: italic;
}