/* ═══════════ BIZHUTERIA NOLI ═══════════ */
:root {
  --bg: #0b0a08;
  --bg-2: #12100c;
  --surface: #17150f;
  --gold: #d4af37;
  --gold-light: #f4e4b0;
  --gold-dark: #9a7b1e;
  --cream: #f4ede1;
  --text: #e8e2d4;
  --muted: #9b937f;
  --line: rgba(212, 175, 55, 0.18);
  --nav-bg: rgba(11, 10, 8, 0.82);
  --menu-bg: rgba(11, 10, 8, 0.97);
  --hero-tint: #191509;
  --card-m1: #221d12;
  --card-m2: #100e0a;
  --shadow-strong: rgba(0, 0, 0, 0.55);
  --stroke-soft: rgba(212, 175, 55, 0.1);
  --ring-line: rgba(212, 175, 55, 0.12);
  --card-index: rgba(244, 228, 176, 0.5);
  --grain-op: 0.045;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Tema e ndritshme ── */
html[data-theme="light"] {
  --bg: #f6f1e5;
  --bg-2: #efe8d6;
  --surface: #fcf9f1;
  --gold: #ab8420;
  --gold-light: #d4af37;
  --gold-dark: #7c6115;
  --cream: #29200f;
  --text: #3c3322;
  --muted: #7d7259;
  --line: rgba(154, 123, 30, 0.28);
  --nav-bg: rgba(246, 241, 229, 0.85);
  --menu-bg: rgba(246, 241, 229, 0.97);
  --hero-tint: #efe4c6;
  --card-m1: #f1e9d3;
  --card-m2: #e6dabb;
  --shadow-strong: rgba(105, 82, 26, 0.2);
  --stroke-soft: rgba(154, 123, 30, 0.14);
  --ring-line: rgba(154, 123, 30, 0.25);
  --card-index: rgba(124, 97, 21, 0.55);
  --grain-op: 0.028;
}

/* Kalim i butë mes temave */
body, .nav, .nav.scrolled, section, .card, .contact-card, .feature,
.footer, .marquee, .card-body, .about-frame, .mobile-menu {
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #0b0a08; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

@media (pointer: fine) {
  body { cursor: none; }
  body a, body button { cursor: none; }
}

/* ═══════════ GRAIN ═══════════ */
.grain {
  position: fixed; inset: -100px; z-index: 997; pointer-events: none;
  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='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--grain-op);
  animation: grainShift 0.6s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-30px, 20px); }
  50% { transform: translate(20px, -35px); }
  75% { transform: translate(-15px, -20px); }
  100% { transform: translate(25px, 30px); }
}

/* ═══════════ PRELOADER / INTRO ═══════════ */
.preloader { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
.curtain {
  position: absolute; top: 0; bottom: 0; width: 50.5%;
  background: linear-gradient(180deg, #14110b, #0b0a08);
}
.curtain-left { left: 0; border-right: 1px solid rgba(212, 175, 55, 0.12); }
.curtain-right { right: 0; }
.preloader-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.preloader-diamond { width: 54px; color: var(--gold); margin-bottom: 22px; }
.preloader-diamond path { stroke-dasharray: 300; stroke-dashoffset: 300; }
.preloader-name {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.6em;
  color: var(--cream); margin-left: 0.6em; white-space: nowrap;
}
.preloader-track {
  width: min(260px, 60vw); height: 1px; background: rgba(212, 175, 55, 0.15);
  margin-top: 26px; overflow: hidden;
}
.preloader-bar {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
}
.preloader-count {
  font-family: var(--serif); font-size: clamp(3rem, 8vw, 5rem); font-weight: 400;
  color: var(--gold); line-height: 1; margin-top: 18px; font-variant-numeric: tabular-nums;
}

/* ═══════════ CURSOR ═══════════ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%);
  display: none;
}
@media (pointer: fine) { .cursor-dot, .cursor-ring { display: block; } }
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(212, 175, 55, 0.5);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.cursor-ring.active {
  width: 58px; height: 58px; border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.07);
}

/* ═══════════ SCROLL PROGRESS ═══════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 998;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 60px);
  transition: transform 0.5s var(--ease), background 0.5s, padding 0.5s;
  opacity: 0;
}
body.loaded .nav { opacity: 1; transition: opacity 0.8s ease 0.2s, transform 0.5s var(--ease), background 0.5s, padding 0.5s; }
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px clamp(20px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 26px; color: var(--gold); }
.nav-logo-text {
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.22em;
  color: var(--cream); display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-text em {
  font-style: normal; font-family: var(--sans); font-size: 0.5rem;
  letter-spacing: 0.5em; color: var(--gold); margin-top: 3px;
}
.nav-links { display: flex; gap: clamp(18px, 3vw, 40px); }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0%; height: 1px;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); padding: 10px 20px;
  border-radius: 40px; transition: background 0.4s var(--ease), color 0.4s, border-color 0.4s;
}
.nav-cta:hover { background: var(--gold); color: #0b0a08; border-color: var(--gold); }
/* Butoni i temës */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: none; color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.4s, background 0.4s, transform 0.6s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(40deg); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
.nav-right { display: flex; align-items: center; gap: 14px; }

html[data-theme="light"] .hero-spotlight {
  background: radial-gradient(circle, rgba(154, 123, 30, 0.13) 0%, rgba(154, 123, 30, 0.06) 40%, transparent 70%);
  mix-blend-mode: normal;
}
html[data-theme="light"] .aurora { opacity: 0.4; }
html[data-theme="light"] .meteor {
  background: #7c6115;
  box-shadow: 0 0 8px 1px rgba(124, 97, 21, 0.7);
}
html[data-theme="light"] .meteor::before {
  background: linear-gradient(90deg, transparent, rgba(124, 97, 21, 0.6));
}

.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 6px; padding: 6px; }
.nav-burger span { width: 26px; height: 1.5px; background: var(--cream); transition: 0.4s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: var(--menu-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: 0.5s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; color: var(--cream);
  opacity: 0; transform: translateY(20px); transition: 0.5s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, var(--hero-tint) 0%, var(--bg) 65%);
}
#sparkles { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Ar i lëngshëm — shader WebGL në sfond */
#liquidGold {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.65;
}
html[data-theme="light"] #liquidGold { opacity: 0.5; }

/* Skena 3D e unazës */
#ringScene {
  position: absolute; z-index: 1; pointer-events: none;
  width: min(430px, 76vw); height: min(430px, 76vw);
  top: 55%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 1.6s ease;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.18));
}
body.loaded #ringScene { opacity: 1; transition-delay: 2.6s; }
#ringScene canvas { width: 100% !important; height: 100% !important; }
@media (max-width: 700px) {
  #ringScene { width: 60vw; height: 60vw; top: 46%; opacity: 0.85 !important; }
}

/* Zingjirët me fizikë */
#chainCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity 1.2s ease;
}
body.loaded #chainCanvas { opacity: 1; transition-delay: 2.2s; }

/* Aurora ari — shtresa të buta drite që lëvizin ngadalë */
.aurora { position: absolute; inset: -10%; filter: blur(70px); opacity: 0.55; }
.aurora i {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.32), transparent 65%);
}
.aurora i:nth-child(1) {
  width: 55vw; height: 55vw; top: -12%; left: -8%;
  animation: auroraA 16s ease-in-out infinite alternate;
}
.aurora i:nth-child(2) {
  width: 44vw; height: 44vw; bottom: -10%; right: -6%;
  background: radial-gradient(circle, rgba(154, 123, 30, 0.3), transparent 65%);
  animation: auroraB 20s ease-in-out infinite alternate;
}
.aurora i:nth-child(3) {
  width: 30vw; height: 30vw; top: 38%; left: 55%;
  background: radial-gradient(circle, rgba(244, 228, 176, 0.16), transparent 60%);
  animation: auroraC 13s ease-in-out infinite alternate;
}
@keyframes auroraA { from { transform: translate(0, 0) scale(1); } to { transform: translate(14vw, 10vh) scale(1.25); } }
@keyframes auroraB { from { transform: translate(0, 0) scale(1.15); } to { transform: translate(-12vw, -8vh) scale(0.9); } }
@keyframes auroraC { from { transform: translate(0, 0) scale(0.9); } to { transform: translate(-10vw, 12vh) scale(1.3); } }

/* Meteorë ari */
.meteors { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.meteor {
  position: absolute; top: -6%;
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px 1px rgba(244, 228, 176, 0.8);
  animation: meteorFall var(--m-dur, 2.4s) linear forwards;
}
.meteor::before {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 150px; height: 1px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(244, 228, 176, 0.75));
}
@keyframes meteorFall {
  0% { transform: rotate(215deg) translateX(0); opacity: 0; }
  8% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: rotate(215deg) translateX(-130vh); opacity: 0; }
}

/* Spotlight që ndjek miun */
.hero-spotlight {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 228, 176, 0.10) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
  top: 0; left: 0; transform: translate(-50%, -50%);
  pointer-events: none; mix-blend-mode: screen;
  display: none;
}
@media (pointer: fine) { .hero-spotlight { display: block; } }

/* ── Bizhuteri që notojnë në hero ── */
.hero-jewels { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.jewel { position: absolute; color: var(--gold); opacity: 0; transition: opacity 1.2s ease; }
body.loaded .jewel { opacity: 1; }
.jewel svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
}
.jewel .jd {
  stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 420; stroke-dashoffset: 420;
}
body.loaded .jewel .jd { animation: drawIn 2s var(--ease) forwards; }
body.loaded .jewel .jd-2 { animation-delay: 0.35s; }
body.loaded .jewel .jd-3 { animation-delay: 0.7s; }
body.loaded .jewel .jd-4 { animation-delay: 1.05s; }
.jewel .jgem { opacity: 0; }
body.loaded .jewel .jgem { animation: gemPop 0.8s var(--ease) 1.6s forwards, sparkTwinkle 2.6s ease-in-out 2.4s infinite; }
@keyframes gemPop { 0% { opacity: 0; } 60% { opacity: 1; } 100% { opacity: 0.9; } }

.jewel-float { width: 100%; height: 100%; animation: jewelFloat 7s ease-in-out infinite alternate; }
@keyframes jewelFloat {
  from { transform: translateY(-9px) rotate(-3deg); }
  to { transform: translateY(9px) rotate(3.5deg); }
}

/* Unaza dhe zingjiri i vizatuar u zëvendësuan nga unaza 3D reale dhe zingjiri me fizikë */
.jewel-ring, .jewel-chain { display: none; }
.jewel-chain .jewel-float { animation-delay: -2.4s; animation-duration: 8.5s; }
.jewel-earring { width: 74px; height: 111px; right: 13%; bottom: 17%; }
.jewel-earring .jewel-float { animation-delay: -4s; animation-duration: 6s; }
.jewel-necklace { width: 140px; height: 131px; left: 10%; bottom: 15%; }
.jewel-necklace .jewel-float { animation-delay: -1.2s; animation-duration: 7.8s; }

@media (max-width: 1100px) {
  .jewel-ring { left: 4%; } .jewel-chain { right: 3%; }
  .jewel-earring { right: 5%; } .jewel-necklace { left: 5%; }
}
@media (max-width: 860px) {
  .jewel { transform: scale(0.62); transform-origin: center; }
  .jewel-ring { left: -2%; top: 17%; }
  .jewel-chain { right: -4%; top: 13%; }
  .jewel-earring { right: -1%; bottom: 21%; }
  .jewel-necklace { left: -3%; bottom: 17%; }
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, transparent 65%);
  top: 50%; left: 50%; margin: -350px 0 0 -350px;
  animation: glowPulse 5s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: 0.55; } to { opacity: 1; } }
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; will-change: transform, filter, opacity; }
.hero-eyebrow span {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.5em; color: var(--gold);
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 1.02; color: var(--cream); letter-spacing: 0.01em;
  perspective: 900px;
}
.hero-title .line { display: block; }
.hero-title .char { display: inline-block; will-change: transform; transform-origin: 50% 100%; }
.gold-shimmer, .gold-shimmer .char {
  background: linear-gradient(110deg, var(--gold-dark) 20%, var(--gold-light) 42%, #fff8e1 50%, var(--gold-light) 58%, var(--gold-dark) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 4.5s linear infinite;
  font-style: italic;
}
@keyframes shimmer { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
.hero-sub { max-width: 560px; margin: 30px auto 0; color: var(--muted); font-size: 1.02rem; }
.hero-actions { display: flex; gap: 18px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 15px 36px; border-radius: 50px;
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 400; position: relative; overflow: hidden;
  transition: box-shadow 0.45s var(--ease), border-color 0.45s, color 0.45s, background-position 0.45s;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
  background-size: 200% 100%; color: #0d0c09; font-weight: 500;
}
.btn-gold:hover { background-position: 100% 0; box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* Border beam — dritë që udhëton rreth konturit të butonit */
@property --beam {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.btn-ghost::before {
  content: ''; position: absolute; inset: -1px; border-radius: 50px;
  padding: 1.5px;
  background: conic-gradient(from var(--beam),
    transparent 0deg 300deg,
    rgba(244, 228, 176, 0.2) 330deg,
    var(--gold-light) 350deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: beamSpin 3.5s linear infinite;
  pointer-events: none;
}
@keyframes beamSpin { to { --beam: 360deg; } }

.ring-wrap { position: absolute; pointer-events: none; }
.ring-wrap-1 { width: 520px; height: 520px; top: 50%; left: 50%; margin: -260px 0 0 -260px; }
.ring-wrap-2 { width: 720px; height: 720px; top: 50%; left: 50%; margin: -360px 0 0 -360px; }
.hero-ring {
  position: absolute; inset: 0; border: 1px solid var(--ring-line); border-radius: 50%;
  animation: ringSpin 30s linear infinite;
}
.hero-ring::before {
  content: ''; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); top: -3px; left: 50%;
  box-shadow: 0 0 12px var(--gold);
}
.hero-ring-2 { animation-duration: 46s; animation-direction: reverse; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* Objekte që orbitojnë nëpër unaza (rrotullohen bashkë me unazën) */
.orbiter {
  position: absolute; color: var(--gold);
  font-size: 0.85rem; line-height: 1;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
  animation: orbiterPulse 2.8s ease-in-out infinite;
}
.ob-diamond { width: 16px; filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8)); }
.ob-1 { top: 50%; left: -7px; margin-top: -7px; }
.ob-2 { top: 50%; right: -8px; margin-top: -8px; animation-delay: 1.2s; }
.ob-3 { bottom: -7px; left: 50%; margin-left: -7px; animation-delay: 0.5s; }
.ob-4 { top: 14%; right: 10%; font-size: 0.6rem; animation-delay: 1.8s; }
.ob-5 { bottom: 14%; left: 10%; animation-delay: 0.9s; }
@keyframes orbiterPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted);
}
.scroll-hint-line { width: 1px; height: 44px; background: var(--line); position: relative; overflow: hidden; }
.scroll-hint-line::after {
  content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold); animation: scrollDrop 1.8s var(--ease) infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 100% { top: 110%; } }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; background: var(--bg-2); position: relative;
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-chunk { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee-chunk span {
  font-family: var(--serif); font-size: 1.5rem; font-style: italic;
  color: var(--cream); white-space: nowrap; opacity: 0.85;
}
.marquee-chunk i { color: var(--gold); font-style: normal; font-size: 0.9rem; }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: clamp(90px, 12vw, 150px) 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(22px, 5vw, 48px); }
.section-tag { font-size: 0.7rem; letter-spacing: 0.5em; color: var(--gold); margin-bottom: 18px; }
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5.4vw, 3.8rem); color: var(--cream);
  line-height: 1.1; margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title .char { display: inline-block; will-change: transform; }

/* Tekst gjigant në sfond */
.big-text {
  position: absolute; top: 6%; left: 0; z-index: 0;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(8rem, 26vw, 22rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--stroke-soft);
  white-space: nowrap; pointer-events: none; user-select: none;
  will-change: transform;
}
.big-text-2 { top: auto; bottom: 4%; }

/* ═══════════ ABOUT ═══════════ */
.about { background: var(--bg); overflow: hidden; }
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
  position: relative; z-index: 1;
}
.about-text p { color: var(--muted); margin-bottom: 18px; max-width: 520px; }
.about-text p .w { display: inline-block; }
.stats { display: flex; gap: clamp(28px, 5vw, 64px); margin-top: 44px; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.about-visual { display: flex; justify-content: center; }
.about-frame {
  width: min(360px, 100%); aspect-ratio: 3 / 3.6;
  border: 1px solid var(--line); border-radius: 200px 200px 18px 18px;
  background: linear-gradient(180deg, rgba(212,175,55,0.05), transparent 55%), var(--surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px; position: relative; overflow: hidden;
  will-change: transform;
}
.about-necklace { width: 78%; }
.draw-path { stroke-dasharray: 400; stroke-dashoffset: 400; }
.about-frame.visible .draw-path { animation: drawIn 2.2s var(--ease) 0.3s forwards; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
.about-frame .pendant { transform-origin: 150px 150px; animation: pendantSwing 4.5s ease-in-out infinite alternate; }
@keyframes pendantSwing { from { transform: rotate(-3.5deg); } to { transform: rotate(3.5deg); } }
.spark { animation: sparkTwinkle 2.4s ease-in-out infinite; }
.spark.s2 { animation-delay: 0.7s; }
.spark.s3 { animation-delay: 1.4s; }
@keyframes sparkTwinkle { 0%, 100% { opacity: 0.15; } 50% { opacity: 1; } }
.about-frame-label { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--muted); margin-top: 14px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ═══════════ PRODUCTS — HORIZONTAL ═══════════ */
.products { background: var(--bg-2); position: relative; }
.products-pin {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; position: relative; padding: 90px 0 60px;
}
.products-head { width: 100%; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 46px; position: relative; z-index: 1; }
.products-hint {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.products-hint svg { color: var(--gold); animation: hintNudge 1.6s var(--ease) infinite; }
@keyframes hintNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
.h-track {
  display: flex; gap: clamp(20px, 2.5vw, 34px);
  padding: 0 clamp(22px, 5vw, 48px);
  width: max-content; position: relative; z-index: 1;
  will-change: transform;
}
.h-track .card { width: clamp(300px, 26vw, 380px); flex-shrink: 0; }

.card {
  background: var(--surface); border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 14px; overflow: hidden;
  will-change: transform;
}
.card:hover { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 26px 60px var(--shadow-strong); }
.card-media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: radial-gradient(ellipse at 50% 40%, var(--card-m1), var(--card-m2) 75%); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 0.9s var(--ease); }
.card:hover .card-media img { transform: scale(1.13); }
.card-media.no-img img { display: none; }
.card-placeholder {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center; color: var(--gold);
}
.card-media.no-img .card-placeholder { display: flex; }
.card-placeholder svg { width: 44%; opacity: 0.9; filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.35)); transition: transform 0.8s var(--ease); }
.card:hover .card-placeholder svg { transform: scale(1.1) rotate(-3deg); }
.card-index {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--card-index); letter-spacing: 0.1em;
}
.card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(244, 228, 176, 0.14) 48%, transparent 62%);
  transform: translateX(-120%);
}
.card:hover .card-shine { animation: shineSweep 1.1s var(--ease); }
@keyframes shineSweep { to { transform: translateX(120%); } }
.card-body { padding: 24px 26px 28px; }
.card-cat { font-size: 0.62rem; letter-spacing: 0.4em; color: var(--gold); }
.card-body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; color: var(--cream); margin: 10px 0 8px; line-height: 1.25; }
.card-body p { font-size: 0.88rem; color: var(--muted); }

.card-cta {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.1), var(--surface) 60%);
  border-color: rgba(212, 175, 55, 0.3);
}
.card-cta-inner { padding: 40px 30px; }
.card-cta-diamond { color: var(--gold); font-size: 1.6rem; margin-bottom: 16px; animation: sparkTwinkle 2.6s ease-in-out infinite; }
.card-cta h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.card-cta p { font-size: 0.88rem; color: var(--muted); margin-bottom: 26px; }

/* Mobile: grid normal, pa scroll horizontal */
@media (max-width: 860px) {
  .products-pin { min-height: 0; padding: clamp(90px, 12vw, 150px) 0; }
  .products-hint { display: none; }
  .products-head { flex-direction: column; align-items: flex-start; }
  .h-track {
    width: 100%; flex-direction: column; align-items: stretch;
  }
  .h-track .card { width: 100%; }
}

/* ═══════════ FEATURES ═══════════ */
.features { background: var(--bg); text-align: center; overflow: hidden; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px); margin-top: 56px;
}
@media (max-width: 820px) { .features-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; margin-top: 56px; } }
.feature {
  border: 1px solid var(--line); border-radius: 14px; padding: 44px 30px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent);
  transition: border-color 0.5s; will-change: transform;
}
.feature:hover { border-color: rgba(212, 175, 55, 0.45); }
.feature-icon { color: var(--gold); font-size: 1.4rem; margin-bottom: 18px; animation: sparkTwinkle 3s ease-in-out infinite; }
.feature:nth-child(2) .feature-icon { animation-delay: 1s; }
.feature:nth-child(3) .feature-icon { animation-delay: 2s; }
.feature h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.feature p { font-size: 0.9rem; color: var(--muted); }

/* ═══════════ CONTACT ═══════════ */
.contact { background: var(--bg-2); overflow: hidden; }
.contact-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07), transparent 65%);
  top: -200px; right: -150px; pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px); margin-top: 56px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; max-width: 460px; } }
.contact-card {
  display: block; border: 1px solid var(--line); border-radius: 14px;
  padding: 40px 32px; background: var(--surface);
  transition: border-color 0.5s, box-shadow 0.5s; will-change: transform;
}
.contact-card:hover { border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 24px 60px var(--shadow-strong); }
.contact-icon {
  width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 22px; transition: 0.5s var(--ease);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card:hover .contact-icon { background: var(--gold); color: #0d0c09; transform: rotate(-8deg) scale(1.05); }
.contact-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); word-break: break-word; }
.contact-link {
  display: inline-block; margin-top: 18px; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  text-align: center; padding: 70px 24px 46px;
  border-top: 1px solid var(--line); background: var(--bg);
}
.footer-diamond { width: 40px; margin: 0 auto 16px; color: var(--gold); animation: diamondFloat 3s var(--ease) infinite alternate; }
@keyframes diamondFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }
.footer-name { font-family: var(--serif); letter-spacing: 0.4em; color: var(--cream); font-size: 1.05rem; margin-left: 0.4em; }
.footer-copy { font-size: 0.75rem; color: var(--muted); margin-top: 14px; letter-spacing: 0.08em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .grain { display: none; }
}
