/* ============================================================
   MUA GLAMOUR v2 — Cosmic Couture
   Paleta: blu mesnate #0a1124 · ari shampanjë #c9a45c · fildish #f0ede4
   Fonte: Bodoni Moda (display) · Jost (utility)
   ============================================================ */

:root {
  --nata: #0a1124;
  --nata-2: #0e1730;
  --nata-3: #121b38;
  --ari: #c9a45c;
  --fildish: #f0ede4;
  --hi: #9aa0b8;
  --hi-dark: #5d6786;
  --vije: rgba(201, 164, 92, 0.2);
  --vije-soft: rgba(240, 237, 228, 0.1);
  --serif: "Bodoni Moda", "Didot", serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--nata);
  color: var(--fildish);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--ari); color: var(--nata); }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.ari { color: var(--ari); }

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ari);
}

.outline-text { color: transparent; -webkit-text-stroke: 1.5px var(--fildish); }

/* ---------- Yjet ---------- */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.star {
  position: absolute; border-radius: 50%;
  background: #e8e4d6;
  animation: twinkle var(--tw, 4s) ease-in-out infinite;
  animation-delay: var(--td, 0s);
}
@keyframes twinkle { 0%, 100% { opacity: var(--to, 0.9); } 50% { opacity: 0.1; } }
.shooting {
  position: absolute; width: 90px; height: 1px;
  background: var(--fildish); opacity: 0;
  transform: rotate(-35deg);
  animation: shoot 1.2s ease-out forwards;
}
@keyframes shoot {
  0% { opacity: 0; transform: rotate(-35deg) translateX(0); }
  15% { opacity: 0.8; }
  100% { opacity: 0; transform: rotate(-35deg) translateX(240px); }
}

/* ---------- Kursori custom ---------- */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  border-radius: 50%;
  will-change: transform;
}
.cursor { width: 8px; height: 8px; background: var(--ari); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 164, 92, 0.55);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s;
}
body.cursor-grow .cursor-ring {
  width: 72px; height: 72px;
  border-color: rgba(240, 237, 228, 0.5);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--nata);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
}
.preloader-logo {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 110px);
  line-height: 1; letter-spacing: 6px;
  display: flex;
}
.preloader-logo span { display: inline-block; }
.preloader-logo .m { color: var(--fildish); }
.preloader-logo .u { color: transparent; -webkit-text-stroke: 1.5px var(--fildish); }
.preloader-logo .a { color: var(--ari); font-style: italic; }
.preloader-sub {
  font-size: 10px; letter-spacing: 6px;
  color: var(--hi); text-transform: uppercase;
}
.preloader-line {
  width: 120px; height: 1px;
  background: var(--vije-soft);
  position: relative; overflow: hidden;
}
.preloader-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ari);
  transform: translateX(-100%);
  animation: loadline 1.6s var(--ease) forwards;
}
@keyframes loadline { to { transform: translateX(0); } }

/* ---------- Navbar klasik ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 20px 4vw;
  transition: background 0.5s, padding 0.5s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 17, 36, 0.92);
  padding: 13px 4vw;
  border-bottom-color: var(--vije);
  backdrop-filter: blur(8px);
}
.brand {
  font-family: var(--serif);
  font-size: 15px; letter-spacing: 3px;
  white-space: nowrap;
}
.brand .ylli { color: var(--ari); }
.nav-desktop { display: flex; align-items: center; gap: 30px; }
.nav-desktop ul {
  list-style: none;
  display: flex; gap: 28px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--hi);
}
.nav-desktop ul a { position: relative; padding-bottom: 4px; transition: color 0.3s; }
.nav-desktop ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ari);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-desktop ul a:hover { color: var(--fildish); }
.nav-desktop ul a:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-apliko {
  background: var(--ari); color: var(--nata);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  padding: 11px 22px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-apliko:hover { background: var(--fildish); }
.menu-btn {
  display: none;
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 11px; letter-spacing: 3px;
  color: var(--ari);
}

/* ---------- Menu overlay (celular) ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: var(--nata-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
}
.menu-overlay.open { clip-path: inset(0 0 0 0); }
.menu-overlay nav ul { list-style: none; }
.menu-overlay nav a {
  font-family: var(--serif);
  font-size: clamp(38px, 9vw, 70px);
  line-height: 1.3;
  color: transparent;
  -webkit-text-stroke: 1px var(--fildish);
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
  display: inline-block;
}
.menu-overlay nav a:hover { color: var(--ari); -webkit-text-stroke-color: var(--ari); font-style: italic; }
.menu-close {
  position: absolute; top: 24px; right: 5vw;
  background: none; border: 0; cursor: pointer;
  color: var(--ari); font-family: var(--sans);
  font-size: 11px; letter-spacing: 3px;
}
.menu-meta {
  position: absolute; bottom: 30px; left: 8vw;
  font-size: 10px; letter-spacing: 3px; color: var(--hi-dark);
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 4vw 70px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-ghost {
  position: absolute; top: 100px; left: 0; right: 0;
  overflow: hidden; opacity: 0.5; pointer-events: none;
}
.hero-ghost-track {
  display: inline-flex; white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 260px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, 0.18);
  animation: marq 44s linear infinite;
}
.hero-ghost-track span { padding: 0 40px; }

.hero-eyebrow { margin-bottom: 20px; display: block; }
.hero-title {
  position: relative; z-index: 2;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 160px);
  line-height: 0.93;
}
.hero-title .l1 { display: block; }
.hero-title .l2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--fildish);
  font-weight: 400;
}
.hero-title .l3 {
  display: block;
  font-style: italic;
  color: var(--ari);
  font-weight: 400;
}

.hero-photo {
  position: absolute;
  right: 6vw; top: 18vh;
  width: clamp(230px, 24vw, 370px);
  aspect-ratio: 7 / 10;
  z-index: 1;
}
.hero-photo .frame {
  position: absolute; inset: 0;
  border: 1px solid var(--ari);
  transform: translate(16px, 16px);
}
.hero-photo .foto {
  position: absolute; inset: 0; overflow: hidden;
  animation: floaty 8s ease-in-out infinite;
}
.hero-photo .tag {
  position: absolute; bottom: -14px; left: -18px;
  background: var(--ari); color: var(--nata);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  padding: 9px 14px; z-index: 3;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.hero-lede {
  position: relative; z-index: 2;
  max-width: 300px;
  margin-top: 48px;
  font-size: 13px; line-height: 1.8; color: var(--hi);
}
.hero-lede a {
  color: var(--fildish);
  border-bottom: 1px solid var(--ari);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.hero-lede a:hover { color: var(--ari); }

.hero-num {
  position: absolute; right: 4vw; bottom: 4vh;
  font-family: var(--serif);
  font-size: clamp(110px, 15vw, 220px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, 0.4);
  pointer-events: none;
}
.hero-vertical {
  position: absolute; left: 12px; top: 55%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 9px; letter-spacing: 5px;
  color: var(--hi-dark); text-transform: uppercase;
}
.hero-scroll {
  position: absolute; bottom: 4vh; left: 4vw;
  font-size: 9px; letter-spacing: 4px; color: var(--hi-dark);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: ""; width: 50px; height: 1px;
  background: var(--ari);
  animation: pulseline 2.4s ease-in-out infinite;
}
@keyframes pulseline {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.4); opacity: 0.5; }
}

/* ---------- Marquee i artë ---------- */
.marq { background: var(--ari); overflow: hidden; padding: 13px 0; }
.marq-track {
  display: inline-flex; white-space: nowrap;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; letter-spacing: 2px;
  color: var(--nata);
  animation: marq 18s linear infinite;
}
.marq-track span { padding: 0 18px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Countdown ---------- */
.final {
  padding: 110px 4vw;
  text-align: center;
  border-bottom: 1px solid var(--vije-soft);
  position: relative;
  overflow: hidden;
}
.final .eyebrow { margin-bottom: 26px; display: block; }
.count {
  display: flex; justify-content: center; align-items: baseline;
  gap: clamp(18px, 5vw, 64px);
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.count-item .num {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 150px);
  line-height: 1; font-weight: 400;
}
.count-item .lbl {
  font-size: 10px; letter-spacing: 4px;
  color: var(--hi); text-transform: uppercase;
  margin-top: 10px;
}
.count-sep {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 60px);
  color: var(--ari);
}
.final .venue {
  margin-top: 34px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--hi);
  position: relative; z-index: 2;
}
.final .venue em { color: var(--fildish); }

/* ---------- Seksionet ---------- */
.section { padding: 110px 4vw; position: relative; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 54px; gap: 20px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
}
.section-head .more {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--hi);
  transition: color 0.3s;
}
.section-head .more:hover { color: var(--ari); }

/* ---------- Konkurrentet ---------- */
.konk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.5vw, 34px);
}
.kcard { position: relative; }
.kcard:nth-child(3n + 2) { transform: translateY(60px); }
.kcard:nth-child(3n + 3) { transform: translateY(26px); }
.kcard .foto { position: relative; overflow: hidden; aspect-ratio: 7 / 10; }
.kcard .qyteti {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(15px, 1.8vw, 22px);
  color: var(--ari);
}
.kcard .emri {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
.kcard .nr {
  font-family: var(--serif); font-style: italic;
  color: var(--hi-dark); font-size: 14px; letter-spacing: 0;
}

/* ---------- Placeholder / foto ---------- */
.ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: 4px; color: var(--hi-dark);
  text-transform: uppercase;
  transition: transform 1.3s var(--ease);
}
.foto:hover .ph, .foto:hover img { transform: scale(1.08); }
.foto img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.ph-1 { background: #121b38; }
.ph-2 { background: #0f1730; }
.ph-3 { background: #141a33; }
.ph-4 { background: #10182e; }
.ph-5 { background: #151d3a; }
.ph-6 { background: #0d1429; }

/* ---------- Galeria horizontale ---------- */
.gal { overflow: hidden; border-top: 1px solid var(--vije-soft); border-bottom: 1px solid var(--vije-soft); }
.gal-head { padding: 90px 4vw 50px; }
.gal-wrap { position: relative; }
.gal-track {
  display: flex; gap: clamp(16px, 3vw, 40px);
  padding: 0 4vw 90px;
  will-change: transform;
  width: max-content;
}
.gal-item { position: relative; flex-shrink: 0; }
.gal-item .foto { position: relative; overflow: hidden; }
.gal-item:nth-child(odd) .foto { width: clamp(260px, 32vw, 480px); aspect-ratio: 4 / 5; }
.gal-item:nth-child(even) .foto { width: clamp(300px, 40vw, 620px); aspect-ratio: 16 / 10; margin-top: 60px; }
.gal-item .cap {
  margin-top: 12px;
  font-size: 10px; letter-spacing: 3px; color: var(--hi-dark); text-transform: uppercase;
}

/* ---------- Lajmet ---------- */
.news-list { border-top: 1px solid var(--vije-soft); }
.news-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 30px; align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--vije-soft);
  transition: padding-left 0.5s var(--ease);
  position: relative;
}
.news-item:hover { padding-left: 22px; }
.news-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--ari);
  transform: scaleY(0);
  transition: transform 0.5s var(--ease);
}
.news-item:hover::before { transform: scaleY(1); }
.news-item .data {
  font-size: 10px; letter-spacing: 3px; color: var(--hi-dark); text-transform: uppercase;
}
.news-item h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 3vw, 34px); line-height: 1.2;
}
.news-item .shigjeta {
  font-family: var(--serif); font-size: 26px; color: var(--ari);
  transition: transform 0.4s var(--ease);
}
.news-item:hover .shigjeta { transform: translateX(10px); }

/* ---------- CTA Apliko ---------- */
.apliko {
  padding: 150px 4vw;
  text-align: center;
  position: relative; overflow: hidden;
}
.apliko .eyebrow { display: block; margin-bottom: 30px; }
.apliko-btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(64px, 13vw, 190px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--fildish);
  position: relative;
  z-index: 2;
}
.apliko-btn .mbush {
  position: absolute; inset: 0;
  color: var(--ari); -webkit-text-stroke: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s var(--ease);
}
.apliko-btn:hover .mbush { clip-path: inset(0 0 0 0); }
.apliko-note { margin-top: 30px; font-size: 12px; color: var(--hi-dark); letter-spacing: 2px; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--vije);
  padding: 60px 4vw 40px;
  position: relative; overflow: hidden;
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.footer-brand {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1;
}
.footer-brand em { color: var(--ari); }
.footer-social {
  display: flex; gap: 26px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--hi);
}
.footer-social a:hover { color: var(--ari); }
.footer-legal {
  margin-top: 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 9px; letter-spacing: 3px; color: var(--hi-dark); text-transform: uppercase;
  position: relative; z-index: 2;
}

/* ---------- Reveal ---------- */
.will-reveal { will-change: transform, opacity; }

/* ---------- Blog fallback ---------- */
.plain-page { padding: 170px 4vw 100px; max-width: 900px; margin: 0 auto; }
.plain-page h1 { font-family: var(--serif); font-size: clamp(36px, 6vw, 70px); margin-bottom: 40px; font-weight: 400; }
.plain-page article { margin-bottom: 60px; }
.plain-page article h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin-bottom: 12px; }
.plain-page article h2 a:hover { color: var(--ari); }
.plain-page .meta { font-size: 10px; letter-spacing: 3px; color: var(--hi-dark); text-transform: uppercase; margin-bottom: 14px; }
.plain-page .content { color: var(--hi); }
.plain-page .content a { color: var(--fildish); border-bottom: 1px solid var(--ari); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav-desktop ul { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 900px) {
  .hero { padding-top: 140px; min-height: auto; }
  .hero-photo { position: relative; right: auto; top: auto; margin: 60px 0 30px auto; }
  .hero-num { display: none; }
  .konk-grid { grid-template-columns: repeat(2, 1fr); }
  .kcard:nth-child(3n + 2), .kcard:nth-child(3n + 3) { transform: none; }
  .kcard:nth-child(2n) { transform: translateY(40px); }
  .news-item { grid-template-columns: 1fr auto; }
  .news-item .data { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .konk-grid { grid-template-columns: 1fr; }
  .kcard:nth-child(2n) { transform: none; }
  .hero-vertical { display: none; }
  .btn-apliko { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   v2.2 — SIGNATURE MOTION PACK
   ============================================================ */

/* ---------- Grain (teksturë filmike) ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainmove 8s steps(10) infinite;
}
@keyframes grainmove {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Vija e progresit ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--ari);
  transform: scaleX(0); transform-origin: 0 0;
  z-index: 990;
}

/* ---------- Shkronjat e ndara (hero) ---------- */
.hero-title .ch { display: inline-block; will-change: transform; }

/* ---------- Perdja e fotove ---------- */
.foto { position: relative; }
.foto .curtain {
  position: absolute; inset: 0; z-index: 3;
  background: var(--nata);
  transform-origin: right center;
  pointer-events: none;
}
.foto .curtain::after {
  content: ""; position: absolute;
  top: 0; bottom: 0; left: -2px; width: 2px;
  background: var(--ari);
}

/* ---------- Fituesja — Spotlight ---------- */
.spot {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 130px 4vw;
  border-bottom: 1px solid var(--vije-soft);
  position: relative; overflow: hidden;
}
.spot-foto {
  position: relative;
  aspect-ratio: 7 / 10;
  max-width: 460px;
  justify-self: end;
  width: 100%;
}
.spot-foto .frame {
  position: absolute; inset: 0;
  border: 1px solid var(--ari);
  transform: translate(18px, 18px);
}
.spot-foto .foto { position: absolute; inset: 0; overflow: hidden; }
.spot-quote { position: relative; }
.spot-quote .eyebrow { display: block; margin-bottom: 26px; }
.spot-quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.28;
  border: 0; margin: 0;
}
.spot-quote blockquote .w { display: inline-block; }
.spot-quote .who {
  margin-top: 30px;
  display: flex; align-items: center; gap: 18px;
}
.spot-quote .who .vije-ari {
  width: 44px; height: 1px; background: var(--ari);
}
.spot-quote .who span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--hi);
}
.spot-quote .who strong { color: var(--fildish); font-weight: 400; }
.spot-num {
  position: absolute; right: 0; bottom: -30px;
  font-family: var(--serif);
  font-size: clamp(90px, 11vw, 170px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, 0.25);
  pointer-events: none;
}

@media (max-width: 900px) {
  .spot { grid-template-columns: 1fr; padding: 90px 4vw; }
  .spot-foto { justify-self: start; max-width: 340px; }
}

/* ============================================================
   v2.3 — KURSORI "AVULL AKULLI"
   ============================================================ */
.cursor-ring { display: none !important; }
.cursor {
  width: 6px; height: 6px;
  background: #eaf2fa;
  box-shadow: 0 0 12px rgba(210, 230, 250, 0.8);
}
#fx-akull {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9995;
}
@media (hover: none), (pointer: coarse) {
  #fx-akull { display: none; }
}

/* ============================================================
   v2.4 — FAQET E BRENDSHME
   ============================================================ */
.page-hero {
  position: relative;
  padding: 190px 4vw 90px;
  text-align: center;
  border-bottom: 1px solid var(--vije-soft);
  overflow: hidden;
}
.page-hero .eyebrow { display: block; margin-bottom: 22px; }
.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 110px);
  line-height: 1;
  position: relative; z-index: 2;
}
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 90px 4vw;
  color: var(--hi);
  font-size: 17px;
  line-height: 1.9;
}
.page-content-intro { padding-bottom: 0; }
.page-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--fildish);
  margin: 60px 0 22px;
  line-height: 1.15;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(21px, 2.6vw, 30px);
  color: var(--ari);
  margin: 40px 0 16px;
}
.page-content p { margin-bottom: 22px; }
.page-content strong { color: var(--fildish); font-weight: 400; }
.page-content a { color: var(--fildish); border-bottom: 1px solid var(--ari); }
.page-content a:hover { color: var(--ari); }
.page-content ul, .page-content ol { margin: 0 0 22px 22px; }
.page-content li { margin-bottom: 10px; }
.page-content li::marker { color: var(--ari); }
.page-content blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--fildish);
  border-left: 1px solid var(--ari);
  padding-left: 26px;
  margin: 40px 0;
  line-height: 1.5;
}
.page-content img { margin: 30px 0; }
.fit-grid .qyteti { font-style: normal; font-family: var(--serif); }

/* ============================================================
   v2.5 — FAQJA KONKURSI: statistika, timeline, fazat
   ============================================================ */
.kstats {
  display: flex; justify-content: center;
  gap: clamp(40px, 8vw, 130px);
  padding: 90px 4vw;
  border-bottom: 1px solid var(--vije-soft);
  flex-wrap: wrap;
  text-align: center;
}
.kstat .knum {
  font-size: clamp(60px, 9vw, 130px);
  line-height: 1;
  color: var(--fildish);
}
.kstat .klbl {
  margin-top: 12px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--ari);
}

.ktl {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}
.ktl::before {
  content: "";
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(201, 164, 92, 0.35);
}
.ktl-item { position: relative; padding-bottom: 56px; }
.ktl-item:last-child { padding-bottom: 0; }
.ktl-item::before {
  content: "";
  position: absolute; left: -44px; top: 14px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ari);
  box-shadow: 0 0 12px rgba(201, 164, 92, 0.6);
}
.ktl-viti {
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  color: var(--ari);
  line-height: 1;
  margin-bottom: 12px;
}
.ktl-teksti {
  color: var(--hi);
  font-size: 15px;
  line-height: 1.85;
  max-width: 560px;
}

.kfazat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 70px);
  max-width: 1100px;
  margin: 0 auto;
}
.kfaza {
  position: relative;
  padding: 34px 0 0 0;
  border-top: 1px solid rgba(201, 164, 92, 0.3);
}
.kf-num {
  position: absolute; top: -26px; right: 0;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, 0.35);
  pointer-events: none;
}
.kfaza h3 {
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
}
.kfaza p {
  color: var(--hi);
  font-size: 15px;
  line-height: 1.85;
  max-width: 420px;
}

@media (max-width: 700px) {
  .kfazat { grid-template-columns: 1fr; }
  .kstats { gap: 36px; }
  .ktl { padding-left: 30px; }
  .ktl-item::before { left: -34px; }
}

/* ============================================================
   v2.6 — PAGE HERO KINETIK (faqet e brendshme)
   ============================================================ */
.ph-ghost {
  position: absolute; top: 54%; left: 0; right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  opacity: 0.6;
  pointer-events: none;
}
.ph-ghost-track {
  display: inline-flex; white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(130px, 21vw, 300px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, 0.14);
  animation: marq 55s linear infinite;
}
.ph-ghost-track span { padding: 0 40px; }
.page-title .ch { display: inline-block; will-change: transform; }
.page-hero .ylli-dek {
  position: absolute;
  font-size: 15px;
  color: var(--ari);
  animation: twinkle 4s ease-in-out infinite;
  pointer-events: none;
}
.page-hero .ylli-dek.d1 { top: 26%; left: 16%; animation-delay: 1s; }
.page-hero .ylli-dek.d2 { top: 62%; right: 14%; font-size: 11px; animation-delay: 2.4s; }
.page-hero .ylli-dek.d3 { top: 34%; right: 26%; font-size: 9px; animation-delay: 0.4s; }

/* ============================================================
   v2.7 — FITUESET: karta të klikueshme drejt profileve
   ============================================================ */
.kcard-klik { display: block; color: inherit; }
.kcard .wiki {
  color: var(--ari);
  font-size: 0.85em;
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.kcard-klik:hover .wiki { transform: translate(4px, -4px); }
.kcard-klik .emri span { transition: color 0.35s; }
.kcard-klik:hover .emri span { color: var(--ari); }

/* ============================================================
   v2.8 — MOMENTET: panele qe hapen (expanding panels)
   ============================================================ */
.momente .akordion {
  display: flex;
  gap: 10px;
  height: min(72vh, 640px);
}
.ak-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #141c36 center top / cover no-repeat;
  cursor: pointer;
  transition: flex 0.85s var(--ease);
}
.ak-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 36, 0.85), rgba(10, 17, 36, 0.05) 55%);
  pointer-events: none;
}
.ak-panel.active { flex: 4; }
.ak-panel .ph { position: absolute; inset: 0; }
.ak-nr {
  position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 24px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, 0.55);
  white-space: nowrap;
}
.ak-info {
  position: absolute; left: 26px; bottom: 24px; right: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
}
.ak-panel.active .ak-info { opacity: 1; transform: none; }
.ak-tag {
  display: block;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ari);
  margin-bottom: 8px;
}
.ak-info h3 {
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 34px);
  color: var(--fildish);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ak-note {
  margin-top: 18px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--hi);
}
@media (max-width: 700px) {
  .momente .akordion { flex-direction: column; height: auto; gap: 8px; }
  .ak-panel { flex: none; height: 62px; transition: height 0.6s var(--ease); }
  .ak-panel.active { flex: none; height: 400px; }
  .ak-nr { left: 18px; top: 50%; transform: translateY(-50%); font-size: 18px; }
}
