/* ============================================================
   Diamond Glass — Punime me xham, Prishtinë (Kosovë)
   Cineastik dark/edel + akcent "Glas-Eisblau"
   Cormorant Garamond (display) + Manrope (sans), self-hosted
   ============================================================ */

:root {
  --bg:        #14161b;
  --bg-2:      #1b1e24;
  --bg-3:      #23272f;
  --line:      rgba(243, 241, 236, 0.10);
  --line-strong: rgba(243, 241, 236, 0.20);
  --text:      #f3f1ec;
  --text-dim:  rgba(243, 241, 236, 0.66);
  --text-faint: rgba(243, 241, 236, 0.42);
  --accent:      #7fb4c6;   /* glas / ice-blue */
  --accent-soft: #a8d2df;
  --accent-deep: #5891a3;
  --accent-glow: rgba(127, 180, 198, 0.18);
  --on-accent:   #06141a;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 4px;
  --r-md: 12px;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 60px);
  --section-y: clamp(72px, 11vh, 144px);
  --header-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.js { scroll-behavior: auto; }              /* Lenis e merr smooth-scroll */
html:not(.js) { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.65; font-weight: 400;
  letter-spacing: 0.01em; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.ico { width: 1.15em; height: 1.15em; flex: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--on-accent); padding: 10px 18px; border-radius: var(--r-sm); font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Kino-overlays ---------- */
.grain {
  position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 70; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 45%, transparent 55%, rgba(0,0,0,0.5) 100%);
}
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 90; background: rgba(127,180,198,0.12); pointer-events: none; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-deep), var(--accent-soft)); transform: scaleX(0); transform-origin: left; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h3 { font-size: 1.4rem; line-height: 1.14; }
.accent { color: var(--accent-soft); }
.scene-eyebrow {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--accent); margin-bottom: 18px; display: block;
}

/* ---------- Butona ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; white-space: nowrap; line-height: 1;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-primary { background: linear-gradient(180deg, var(--accent-soft), var(--accent)); color: var(--on-accent); box-shadow: 0 10px 30px -12px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(127,180,198,0.45); }
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; padding-block: 15px; margin-top: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled { background: rgba(10,11,13,0.82); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: auto; height: 30px; color: var(--text); }
.brand-mark-lg { height: 54px; }
.brand-word { font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.18em; font-size: 0.98rem; text-transform: uppercase; color: var(--text); }
.brand-word-accent { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.92rem; color: var(--text); }
.nav-phone .ico { color: var(--accent); }
.nav-cta { padding: 11px 22px; }

/* ============================================================
   SKENA CINEASTIKE (vollbild)
   ============================================================ */
.scene { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.scene-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--bg); }
.scene-media img, .scene-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.12); will-change: transform;
}
.scene-video { display: block; }
.scene-poster { display: none; }    /* desktop: video; mobile: poster (rregull më poshtë) */

/* ---------- Scroll-Scrubbing flythrough (frame-sequence canvas) ---------- */
.scrub { position: relative; height: 620vh; background: #07080a; }
.scrub-markers { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.smark { position: absolute; transform: translate(-50%, -50%) scale(0.88); opacity: 0; transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); display: inline-flex; align-items: center; gap: 10px; }
.smark.on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.smark-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); position: relative; flex: none; box-shadow: 0 0 12px 2px var(--accent-glow); }
.smark-dot::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px solid var(--accent); animation: smpulse 1.9s ease-out infinite; }
@keyframes smpulse { 0% { transform: scale(0.55); opacity: 0.85; } 100% { transform: scale(1.9); opacity: 0; } }
.smark-label { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text); background: rgba(8,9,12,0.7); border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 13px; backdrop-filter: blur(6px); white-space: nowrap; }
.scrub-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.scrub-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; background: #07080a; }
.scrub-loader { position: absolute; inset: 0; display: grid; place-items: center; background: #07080a; z-index: 4; transition: opacity 0.6s var(--ease); }
.scrub-loader.done { opacity: 0; pointer-events: none; }
.scrub-loader span { width: 46px; height: 46px; border: 2px solid var(--line-strong); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* Kino-Verlauf statt Panel: links/unten abgedunkelt für Text, Haus bleibt sichtbar (rechts/Mitte klar) */
.scrub .scene-scrim { background: linear-gradient(100deg, rgba(7,8,10,0.86) 0%, rgba(7,8,10,0.55) 28%, rgba(7,8,10,0.12) 56%, rgba(7,8,10,0) 74%), linear-gradient(0deg, rgba(7,8,10,0.82) 0%, rgba(7,8,10,0.18) 26%, rgba(7,8,10,0) 46%) !important; }
.scrub .hero-title, .scrub .scene-eyebrow, .scrub .hero-sub, .scrub .hero-caption, .scrub .cap-desc { text-shadow: 0 1px 2px rgba(0,0,0,0.92), 0 2px 28px rgba(0,0,0,0.8); }
/* KEIN Panel mehr — nur Text + Verlauf, damit das Haus sichtbar bleibt */
.scrub .hero-content { display: block; padding: 0; background: none; border: none; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
.scrub .cap-box { display: block; max-width: 620px; padding: 0; background: none; border: none; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
.scrub .cap-box .hero-caption { margin-top: 0; }
/* Laptop/Desktop: Hero-Text auf die rechte Seite (Haus links/Mitte frei) */
@media (min-width: 761px) {
  .scrub .hero-content { margin-left: auto; text-align: right; }
  .scrub .hero-content .hero-title, .scrub .hero-content .hero-sub { margin-left: auto; }
  .scrub .hero-cta { justify-content: flex-end; }
  .scrub .scene-scrim { background: linear-gradient(260deg, rgba(7,8,10,0.84) 0%, rgba(7,8,10,0.5) 30%, rgba(7,8,10,0.1) 58%, rgba(7,8,10,0) 76%), linear-gradient(0deg, rgba(7,8,10,0.8) 0%, rgba(7,8,10,0.16) 26%, rgba(7,8,10,0) 46%) !important; }
}
@media (max-width: 760px) {
  /* Handy: Verlauf oben+unten dunkler, Mitte zeigt das Haus; Text kompakter */
  .scrub .scene-scrim { background: linear-gradient(180deg, rgba(7,8,10,0.74) 0%, rgba(7,8,10,0.34) 30%, rgba(7,8,10,0.1) 50%, rgba(7,8,10,0.5) 78%, rgba(7,8,10,0.92) 100%) !important; }
  .scrub { height: 520vh; }
  .scrub-cap { bottom: 104px; }
  .scrub-hint { display: none; }
  .hero-title { font-size: clamp(1.95rem, 8.5vw, 2.6rem); }
  .hero-sub { font-size: 1rem; margin-top: 14px; }
  .scene-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }
  .hero-caption { font-size: 1.25rem; }
  .hero-cta { margin-top: 18px; }
}
.scrub-content { position: relative; z-index: 3; width: 100%; padding-block: 0; transition: opacity 0.2s linear; }
.scrub-cap { position: absolute; left: 0; right: 0; bottom: 78px; z-index: 3; }
.scrub-cap .hero-caption { margin-top: 0; }
.cap-desc { display: block; margin-top: 11px; max-width: 48ch; font-family: var(--font-sans); font-weight: 500; font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.5; color: var(--text); opacity: 1; text-transform: none; letter-spacing: 0; text-shadow: 0 2px 20px rgba(0,0,0,0.72), 0 1px 3px rgba(0,0,0,0.58); transition: opacity 0.35s var(--ease); }
.cap-desc.swap { opacity: 0; }

/* Echte-Video-Einblendung pro stacion */
.fly-inset { position: absolute; right: 24px; bottom: 92px; z-index: 4; width: clamp(150px, 19vw, 215px); aspect-ratio: 4 / 5; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 18px 44px -16px #000; opacity: 0; transform: translateY(14px) scale(0.96); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); background: #000; pointer-events: none; }
.fly-inset.on { opacity: 1; transform: none; }
.fly-inset video { width: 100%; height: 100%; object-fit: cover; display: block; }
.fly-inset-tag { position: absolute; top: 8px; left: 8px; z-index: 2; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--on-accent); background: var(--accent); padding: 3px 9px; border-radius: 999px; }
@media (max-width: 760px) { .fly-inset { right: 12px; bottom: 130px; width: 34vw; } .cap-desc { font-size: 0.98rem; max-width: 62%; } .scrub-cap .hero-caption { max-width: 62%; } }
.scrub .scene-scrim { z-index: 2; }
.scrub-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-faint); }
.scrub-hint svg { width: 22px; height: 22px; animation: cue 2s var(--ease) infinite; }

/* Hero-video (montazhi cineastik) */
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.06); will-change: transform; }
.hero-caption { margin-top: 20px; min-height: 1.6em; font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.2rem, 2.9vw, 1.95rem); letter-spacing: 0.03em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; gap: 14px; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.hero-caption::before { content: ""; width: 28px; height: 2px; background: var(--accent); flex: none; }
.hero-caption.swap { opacity: 0; transform: translateY(7px); }
.scene-scrim { position: absolute; inset: 0; z-index: 1; }
.scrim-hero {
  background:
    linear-gradient(90deg, rgba(7,8,10,0.92) 0%, rgba(7,8,10,0.66) 40%, rgba(7,8,10,0.12) 74%, rgba(7,8,10,0.4) 100%),
    linear-gradient(0deg, rgba(7,8,10,0.92) 0%, rgba(7,8,10,0) 46%);
}

.scene-content { position: relative; z-index: 2; width: 100%; padding-block: 18vh 14vh; }
.hero-content { max-width: 760px; }
.hero-title { font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 600; max-width: 15ch; }
.hero-title .accent { font-family: var(--font-display); }
.line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.line-in { display: block; }
.hero-sub { margin-top: 24px; color: var(--text-dim); font-size: clamp(1.05rem, 1.6vw, 1.26rem); max-width: 50ch; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 28px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 0.95rem; color: var(--text); }
.hero-trust .ico { color: var(--accent); width: 1.25em; height: 1.25em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-faint);
  transition: color 0.25s var(--ease);
}
.scroll-cue:hover { color: var(--accent-soft); }
.scroll-cue svg { width: 22px; height: 22px; animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Reveal për blloqe standarde ---------- */
[data-reveal] { opacity: 1; }
.js [data-reveal] { opacity: 0; transform: translateY(30px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

/* ============================================================
   KATEGORI SHOWROOM (full-bleed lead + rail + lightbox) — riperdoret
   ============================================================ */
.cat-content { max-width: 720px; }
.cat-content h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 14ch; }
.cat-lead { margin-top: 20px; color: var(--text-dim); font-size: clamp(1.02rem, 1.5vw, 1.2rem); max-width: 48ch; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; padding: 9px 17px;
  border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.82rem; letter-spacing: 0.03em;
  color: var(--text); background: rgba(255,255,255,0.05); backdrop-filter: blur(4px);
}
.cat-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.scrim-bottom { background: linear-gradient(0deg, rgba(7,8,10,0.92) 4%, rgba(7,8,10,0.12) 52%, rgba(7,8,10,0.5) 100%); }

/* rail band */
.rail-band { background: var(--bg); padding-block: clamp(44px, 7vh, 88px); }
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.rail-hint { font-size: 0.78rem; color: var(--text-faint); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.rail-hint svg { width: 18px; height: 18px; }
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(258px, 33vw, 400px);
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px;
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }
.prop {
  position: relative; scroll-snap-align: start; aspect-ratio: 4 / 5; border-radius: var(--r-md);
  overflow: hidden; display: block; width: 100%; text-align: left; background: var(--bg-2);
  border: 1px solid var(--line); cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.prop img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.prop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,10,0.88) 2%, rgba(7,8,10,0.05) 52%); }
.prop:hover, .prop:focus-visible { transform: translateY(-4px); border-color: var(--accent); outline: none; }
.prop:hover img, .prop:focus-visible img { transform: scale(1.05); }
.prop-cap { position: absolute; left: 16px; right: 16px; bottom: 15px; z-index: 2; display: flex; flex-direction: column; gap: 4px; }
.prop-cap b { font-family: var(--font-sans); font-weight: 600; font-size: 0.96rem; color: var(--text); }
.prop-cap span { font-size: 0.76rem; letter-spacing: 0.02em; color: var(--accent-soft); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(5,6,8,0.93); backdrop-filter: blur(8px); padding: clamp(16px, 4vw, 56px); }
.lightbox.open { display: flex; }
.lb-stage { position: relative; display: flex; flex-direction: column; align-items: center; max-width: min(1100px, 92vw); }
.lb-img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: 0 30px 90px -24px #000; background: var(--bg-2); }
.lb-cap { margin-top: 14px; text-align: center; color: var(--text-dim); font-size: 0.9rem; }
.lb-cap b { color: var(--text); font-weight: 600; }
.lb-btn { position: fixed; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.06); color: var(--text); display: grid; place-items: center; transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease); }
.lb-btn:hover { border-color: var(--accent); color: var(--accent-soft); background: rgba(127,180,198,0.12); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-vid { display: none; max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: 0 30px 90px -24px #000; background: #000; }
.lightbox.is-video .lb-prev, .lightbox.is-video .lb-next { display: none; }

/* ============================================================
   Conversion (Hero-CTA, Trust-Band) + Glas-Hover
   ============================================================ */
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-soft); background: rgba(127,180,198,0.12); }

.trust-band { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 28px; margin: 0 0 clamp(34px, 5vh, 56px); padding: 0; }
.trust-band li { position: relative; padding-left: 26px; font-size: 0.94rem; font-weight: 600; color: var(--text); }
.trust-band li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--accent); font-weight: 800; }

/* Glas-Materialität: Kantenlicht + Reflex-Sweep beim Hover (markengerecht) */
.prop::before, .vcard::before { content: ""; position: absolute; top: 0; left: -65%; width: 55%; height: 100%; z-index: 3; pointer-events: none; background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.16) 50%, transparent 100%); transform: skewX(-16deg); opacity: 0; }
.prop:hover::before, .prop:focus-visible::before, .vcard:hover::before { animation: glassSweep 0.9s var(--ease); }
.prop:hover, .prop:focus-visible { box-shadow: 0 18px 42px -22px rgba(127,180,198,0.5); }
.vcard:hover { border-color: var(--accent); box-shadow: 0 18px 42px -22px rgba(127,180,198,0.5); transform: translateY(-4px); transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
@keyframes glassSweep { 0% { left: -65%; opacity: 0; } 12% { opacity: 1; } 100% { left: 120%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .prop::before, .vcard::before { display: none; } }

/* ============================================================
   SHËRBIMET (services + garanci)
   ============================================================ */
.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-2); }
/* Sanfter Übergang vom Flug (fast schwarz) in die Galerie — kein harter Farbsprung */
#projektet { background: linear-gradient(180deg, #07080a 0%, #0f1116 8%, var(--bg-2) 18%); }
.section-head { max-width: 62ch; }
.section-head h2 { margin-top: 6px; }
.section-head .lead { margin-top: 16px; color: var(--text-dim); font-size: 1.05rem; max-width: 56ch; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(36px, 5vh, 56px); }
.svc { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.svc:hover { border-color: var(--accent); transform: translateY(-4px); }
.svc-ico { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; background: var(--accent-glow); color: var(--accent-soft); }
.svc-ico svg { width: 24px; height: 24px; }
.svc h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.svc p { color: var(--text-dim); font-size: 0.95rem; }

.assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.assure li { display: flex; align-items: center; gap: 15px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg); }
.assure .ico { color: var(--accent); width: 1.7em; height: 1.7em; flex: none; }
.assure b { display: block; font-size: 1.05rem; }
.assure span { color: var(--text-dim); font-size: 0.85rem; }

/* ============================================================
   RRETH NESH (about)
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-media { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 5; border: 1px solid var(--line); background: var(--bg-2); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin: 6px 0 18px; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; max-width: 54ch; }
.about-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.about-facts li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.84rem; color: var(--text); }
.about-facts .ico { color: var(--accent); width: 1.05em; height: 1.05em; }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   HEADER-NAV (desktop)
   ============================================================ */
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu a { font-size: 0.92rem; font-weight: 600; color: var(--text); text-shadow: 0 1px 10px rgba(0,0,0,0.55); transition: color 0.2s var(--ease); }
.nav-menu a:hover { color: var(--accent-soft); }
.site-header:not(.scrolled) .brand-word, .site-header:not(.scrolled) .nav-phone span { text-shadow: 0 1px 10px rgba(0,0,0,0.55); }
/* Handy-Menü (Hamburger) */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 11px; background: rgba(255,255,255,0.05); }
.nav-toggle span { display: block; width: 21px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,11,13,0.97); -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); box-shadow: 0 24px 50px -20px #000; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 26px; font-family: var(--font-sans); font-weight: 600; font-size: 1.02rem; color: var(--text); border-top: 1px solid var(--line); }
.mobile-menu a:first-child { border-top: none; }
.mobile-menu a.mm-phone { color: var(--accent-soft); }

/* ============================================================
   KONTAKTI
   ============================================================ */
.contact { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; margin-top: clamp(32px, 5vh, 52px); }
.contact-lines { display: flex; flex-direction: column; gap: 12px; }
.contact-line { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.contact-line:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-line .ico { font-size: 1.4rem; color: var(--accent); width: 1.5em; height: 1.5em; flex: none; }
.contact-line span { display: flex; flex-direction: column; line-height: 1.35; font-size: 0.8rem; color: var(--text-faint); }
.contact-line strong { font-size: 1.04rem; color: var(--text); font-weight: 600; }
.contact-socials { display: flex; gap: 12px; margin-top: 6px; }
.contact-socials a { width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: var(--r-md); display: grid; place-items: center; color: var(--text); transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
.contact-socials a:hover { border-color: var(--accent); color: var(--accent-soft); transform: translateY(-2px); }
.contact-socials svg { width: 22px; height: 22px; }

.contact-form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(22px, 3vw, 34px); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.field input, .field textarea { background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 13px 15px; font-size: 0.95rem; color: var(--text); width: 100%; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.field input.invalid, .field textarea.invalid { border-color: #c75b4a; }
.form-fallback { margin-top: 12px; font-size: 0.84rem; color: var(--text-faint); text-align: center; }
.form-fallback a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }
.form-note { margin-top: 14px; font-size: 0.82rem; color: var(--text-faint); display: flex; align-items: flex-start; gap: 8px; }
.form-note .ico { color: var(--accent); flex: none; margin-top: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(44px, 7vh, 76px); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.3fr 1.1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 36ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-faint); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-block: 24px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--text-faint); }

/* ============================================================
   STICKY-BAR (mobile)
   ============================================================ */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.sticky-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; font-weight: 600; font-size: 0.95rem; background: rgba(10,11,13,0.95); backdrop-filter: blur(10px); color: var(--text); }
.sticky-bar a.sb-wa { color: var(--on-accent); background: var(--accent); }
.sticky-bar svg { width: 20px; height: 20px; }

/* ============================================================
   FAQET LIGJORE (Kushtet / Privatësia / Impresum)
   ============================================================ */
.legal-header { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.legal-header .nav-inner { height: 68px; }
.legal-back { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; color: var(--text-dim); transition: color 0.2s var(--ease); }
.legal-back:hover { color: var(--accent-soft); }
.legal-back svg { width: 16px; height: 16px; }
.legal { max-width: 820px; margin-inline: auto; padding-block: clamp(40px, 7vh, 72px) clamp(56px, 9vh, 96px); }
.legal h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.legal .updated { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 8px; }
.legal .lead { color: var(--text-dim); margin-bottom: 8px; max-width: 64ch; }
.legal h2 { font-family: var(--font-display); font-size: 1.45rem; margin: 34px 0 12px; }
.legal h3 { font-size: 1.05rem; margin: 20px 0 8px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); margin-bottom: 12px; line-height: 1.7; }
.legal ul { padding-left: 1.25em; list-style: disc; margin-bottom: 12px; }
.legal a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--text); }
.legal .ph { color: #e0b15a; font-style: italic; }   /* placeholder për të dhëna që mungojnë */
.legal .note { border: 1px solid var(--line-strong); border-left: 3px solid var(--accent); border-radius: var(--r-sm); padding: 14px 18px; background: var(--bg-2); color: var(--text-dim); font-size: 0.9rem; margin: 18px 0; }
.legal-foot { border-top: 1px solid var(--line); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.85rem; color: var(--text-faint); }
.legal-foot a { color: var(--text-dim); }
.legal-foot a:hover { color: var(--accent-soft); }

/* ============================================================
   GALERIA ME TABS (kategori: foto + video, gjithmonë e arritshme)
   ============================================================ */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(28px, 4vh, 44px); }
.tab { padding: 9px 18px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.9rem; font-weight: 600; color: var(--text-dim); background: transparent; transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); }
.tab:hover { color: var(--text); border-color: var(--accent); }
.tab.on { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.tab-panels { margin-top: 26px; min-height: 320px; }
.tab-panel { display: none; }
.tab-panel.on { display: block; animation: tabin 0.4s var(--ease); }
@keyframes tabin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cat-desc { color: var(--text-dim); line-height: 1.75; max-width: 70ch; margin-bottom: 20px; font-size: 1.02rem; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.cat-grid .vcard, .cat-grid .prop { aspect-ratio: 4 / 5; margin: 0; }
.cat-grid .prop-lead { grid-column: span 2; aspect-ratio: 16 / 10; }
@media (max-width: 560px) { .cat-grid .prop-lead { grid-column: span 1; aspect-ratio: 4 / 3; } }

/* ============================================================
   VIDEO-CARD (riperdoret në galeri)
   ============================================================ */
.vrail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 26vw, 300px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; margin-top: clamp(28px, 4vh, 44px); scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.vrail::-webkit-scrollbar { height: 8px; }
.vrail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }
.vcard { position: relative; scroll-snap-align: start; aspect-ratio: 3 / 4; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.vcard video, .vcard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,10,0.86) 3%, rgba(7,8,10,0) 46%); }
.vcard-cap { position: absolute; left: 14px; right: 14px; bottom: 13px; z-index: 2; font-family: var(--font-sans); font-weight: 600; font-size: 0.92rem; color: var(--text); }

/* ============================================================
   ETAGE 3 — AKKORDEON (galeria me foto + përshkrime)
   ============================================================ */
.acc { margin-top: clamp(28px, 4vh, 44px); border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 22px 4px; cursor: pointer; text-align: left; transition: color 0.2s var(--ease); }
.acc-head:hover { color: var(--accent-soft); }
.acc-head .acc-title { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.85rem); color: var(--text); }
.acc-head:hover .acc-title { color: var(--accent-soft); }
.acc-chev { width: 24px; height: 24px; color: var(--accent); flex: none; transition: transform 0.35s var(--ease); }
.acc-item.open .acc-chev { transform: rotate(180deg); }
.acc-body { overflow: hidden; max-height: 0; transition: max-height 0.55s var(--ease); }
.acc-item.open .acc-body { max-height: 1600px; }
.acc-desc { color: var(--text-dim); max-width: 66ch; padding: 0 4px 18px; line-height: 1.75; }
.acc-body .rail { margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  :root { --section-y: 64px; }
  .nav-phone { display: none; }
  .scene-content { padding-block: 16vh 14vh; }
  .hero-sub { font-size: 1.04rem; }
  .nav-cta { padding: 10px 18px; }
  .rail { grid-auto-columns: 78vw; }
  .rail-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .assure { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .about-media { aspect-ratio: 16 / 11; max-height: 60vh; }
  .contact { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-cta { padding: 10px 18px; }
  .sticky-bar { display: grid; }
  body { padding-bottom: 56px; }            /* hapësirë për sticky-bar */
  .scene-video { display: none; }           /* mobile: vetëm poster, pa video */
  .scene-poster { display: block; }
}

@media (max-width: 980px) {
  .nav-menu { display: none; }              /* navigimi i sipërm vetëm desktop */
  .nav-toggle { display: flex; }            /* hamburger në vend të tij */
}

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

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

@media (max-width: 440px) {
  .brand-word { font-size: 0.86rem; letter-spacing: 0.14em; }
  .nav-cta { padding: 9px 14px; font-size: 0.88rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { width: 100%; }
  .nav-right .nav-cta { width: auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html.js { scroll-behavior: auto; }
  .scene-media img, .scene-media video { transform: none; }
  .line-in, [data-rise] { transform: none !important; opacity: 1 !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .grain { display: none; }
  .scene-video { display: none; }
  .scene-poster { display: block; }
  .scroll-cue svg { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
