/* a_nailzz_art — stilet kryesore */
:root {
  --background: oklch(0.985 0.008 85);
  --foreground: oklch(0.28 0.018 60);
  --card: oklch(0.995 0.004 90);
  --secondary: oklch(0.945 0.017 82);
  --muted-foreground: oklch(0.52 0.02 62);
  --border: oklch(0.9 0.015 82);
  --sand: oklch(0.93 0.025 80);
  --champagne: oklch(0.88 0.045 84);
  --gold: oklch(0.74 0.075 76);
  --ink: oklch(0.24 0.015 60);
  --gradient-gold: linear-gradient(100deg, oklch(0.8 0.06 78), oklch(0.68 0.08 70));
  --shadow-soft: 0 20px 60px -30px oklch(0.5 0.05 70 / 0.45);
  --shadow-lift: 0 30px 70px -35px oklch(0.45 0.06 70 / 0.55);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 300; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.45em; color: var(--muted-foreground); }
.lead { color: var(--muted-foreground); font-size: 14px; }
.gold { color: var(--gold); }
.gold-text {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hairline { height: 1px; background-image: linear-gradient(90deg, transparent, var(--gold), transparent); }

.btn {
  display: inline-block; border-radius: 999px; padding: 14px 32px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em;
  transition: transform .4s cubic-bezier(.22,1,.36,1), background .3s, color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background-image: var(--gradient-gold); color: oklch(0.99 0.005 90); box-shadow: var(--shadow-lift); }
.btn-ghost { border: 1px solid color-mix(in oklab, var(--foreground) 25%, transparent); }
.btn-ghost:hover { background: var(--card); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(18px);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1200px; margin: 0 auto; }
.logo { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.2em; text-transform: lowercase; }
.nav-links { display: none; gap: 36px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted-foreground); }
.nav-links a:hover { color: var(--foreground); }
.nav .btn { padding: 9px 22px; box-shadow: var(--shadow-soft); }
@media (min-width: 860px) { .nav-links { display: flex; } }

/* HERO */
.hero { position: relative; min-height: 92vh; overflow: hidden; display: flex; align-items: flex-start; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
.hero-bg::after, .hero-bg::before { content: ""; position: absolute; inset: 0; }
.hero-bg::before { background: linear-gradient(90deg, var(--background) 8%, color-mix(in oklab, var(--background) 88%, transparent) 45%, color-mix(in oklab, var(--background) 20%, transparent)); }
.hero-bg::after { background: linear-gradient(to top, var(--background), transparent 55%); }
.hero-in { position: relative; padding: 5px 15px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero h1 { font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.25; margin-top: 22px; }
.hero .lead { max-width: 430px; margin-top: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 480px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--border); }
.stats b { font-family: var(--font-display); font-weight: 300; font-size: 30px; display: block; }
.stats span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }
.stamp { position: absolute; right: 40px; top: 90px; width: 160px; height: 160px; border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent); border-radius: 50%; animation: spin 26s linear infinite; display: none; }
@media (min-width: 1024px) { .stamp { display: block; } }
.hero-same-color {
    color: #1e0f0f !important;
}
/* MARQUEE */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: color-mix(in oklab, var(--secondary) 60%, transparent); padding: 14px 0; }
.marquee-track { display: flex; width: max-content; gap: 48px; white-space: nowrap; font-size: 11px; text-transform: uppercase; letter-spacing: 0.35em; color: var(--muted-foreground); animation: marquee 28s linear infinite; }

/* SERVICES */
section { padding: 96px 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; max-width: 34ch; }
.grid-services { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 54px; }
@media (min-width: 640px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-services { grid-template-columns: repeat(4, 1fr); } }
.service { background: var(--card); padding: 32px; height: 100%; transition: background .5s; }
.service:hover { background: var(--secondary); }
.service .num { font-family: var(--font-display); font-size: 14px; color: var(--gold); }
.service h3 { font-size: 24px; margin-top: 18px; }
.service p { font-size: 14px; color: var(--muted-foreground); margin-top: 10px; }
.service .hairline { width: 0; margin-top: 22px; transition: width .7s; }
.service:hover .hairline { width: 100%; }

/* GALLERY */
.gallery { background: color-mix(in oklab, var(--secondary) 40%, transparent); border-block: 1px solid var(--border); }
.tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.tab {
  border: 1px solid var(--border); background: var(--background); color: var(--muted-foreground);
  border-radius: 999px; padding: 10px 24px; font: inherit; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; cursor: pointer; transition: all .3s;
}
.tab:hover { color: var(--foreground); }
.tab.is-active { background-image: var(--gradient-gold); color: oklch(0.99 0.005 90); border-color: transparent; box-shadow: var(--shadow-soft); }
.tab-note { margin-top: 18px; font-style: italic; color: var(--muted-foreground); font-size: 14px; }
.photos {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.photos.is-active {
  display: grid;
}

/* 4 foto në çdo rresht në desktop */
@media (min-width: 768px) {
  .photos.is-active {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--secondary);
}
.photos img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--border); background: var(--secondary); }
.slot {
  position: relative; aspect-ratio: 1; border: 1px solid var(--border);
  background: linear-gradient(135deg, color-mix(in oklab, var(--champagne) 40%, transparent), var(--background), color-mix(in oklab, var(--sand) 60%, transparent));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--muted-foreground); overflow: hidden;
}
.slot::before { content: ""; position: absolute; inset: 12px; border: 1px solid color-mix(in oklab, var(--border) 70%, transparent); }
.slot .n { font-family: var(--font-display); font-size: 30px; }
.slot .t { font-size: 10px; text-transform: uppercase; letter-spacing: 0.35em; }
.slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* COURSES */
.courses { position: relative; overflow: hidden; }
.blur-blob { position: absolute; left: -160px; top: 33%; width: 480px; height: 480px; border-radius: 50%; background: color-mix(in oklab, var(--champagne) 40%, transparent); filter: blur(90px); pointer-events: none; }
.course-grid { position: relative; display: grid; gap: 40px; margin-top: 54px; align-items: stretch; }
@media (min-width: 1024px) { .course-grid { grid-template-columns: 0.95fr 1.05fr; } }
.course-photo { position: relative; min-height: 420px; border: 1px solid var(--border); border-radius: 160px 160px 0 0; overflow: hidden; height: 100%; }
.course-photo img { width: 100%; height: 100%; object-fit: cover; }
.seal {
  position: absolute; right: -12px; bottom: 32px; width: 112px; height: 112px; border-radius: 50%;
  border: 1px solid color-mix(in oklab, var(--gold) 50%, transparent);
  background: color-mix(in oklab, var(--background) 90%, transparent); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-size: 14px; line-height: 1.2;
}
.course-card { background: var(--card); border: 1px solid var(--border); padding: 36px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; height: 100%; }
.course-card h3 { font-size: 30px; }
.modules { display: grid; gap: 20px; }
@media (min-width: 640px) { .modules { grid-template-columns: repeat(2, 1fr); } }
.module .num { font-family: var(--font-display); font-size: 12px; color: var(--gold); }
.module p.t { font-family: var(--font-display); font-size: 18px; margin-top: 4px; }
.module p.d { font-size: 12px; color: var(--muted-foreground); margin-top: 4px; }
.module .hairline { width: 32px; margin-top: 12px; transition: width .5s; }
.module:hover .hairline { width: 100%; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }
.chips span { border: 1px solid var(--border); border-radius: 999px; padding: 6px 16px; }

/* CONTACT */
.contact { background: color-mix(in oklab, var(--secondary) 40%, transparent); border-top: 1px solid var(--border); }
.contact-box { position: relative; overflow: hidden; margin-top: 48px; background: var(--card); border: 1px solid var(--border); padding: 40px 28px; box-shadow: var(--shadow-soft); transition: box-shadow .5s, transform .5s; }
.contact-box:hover { box-shadow: var(--shadow-lift); }
@media (min-width: 768px) { .contact-box { padding: 40px; } }
.sheen { position: absolute; top: 0; bottom: 0; left: 0; width: 33%; pointer-events: none;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--gold) 22%, transparent), transparent);
  animation: sheen 5.5s ease-in-out infinite; }
.contact-grid { position: relative; display: grid; gap: 40px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr 1.1fr; } .contact-col + .contact-col { border-left: 1px solid var(--border); padding-left: 40px; } }
.contact h3 { font-size: 30px; }
.link-row { display: block; border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-top: 16px; transition: color .3s; }
.link-row:hover { color: var(--gold); }
.link-row .k { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted-foreground); }
.link-row .v { display: block; font-family: var(--font-display); font-size: 22px; margin-top: 4px; word-break: break-word; }
.link-row .hairline { width: 32px; margin-top: 8px; transition: width .5s; }
.link-row:hover .hairline { width: 100%; }
.live { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground); }
.dot { position: relative; width: 10px; height: 10px; }
.dot i, .dot em { position: absolute; inset: 0; border-radius: 50%; background: var(--gold); }
.dot i { animation: pulse 2.6s ease-out infinite; }
.hours div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-top: 16px; font-size: 14px; color: var(--muted-foreground); }
.hours div span:last-child { color: var(--foreground); }
.map { position: relative; margin-top: 24px; border: 1px solid var(--border); overflow: hidden; }
.map iframe { width: 100%; height: 280px; border: 0; filter: grayscale(35%); transition: filter .7s; display: block; }
.map:hover iframe { filter: grayscale(0); }
.hero-social{display:flex;justify-content:center;gap:1rem;margin-top:2.5rem}
.hero-social a{width:2.75rem;height:2.75rem;border:1px solid rgba(249,247,242,.35);display:flex;align-items:center;justify-content:center;transition:all .35s}
.hero-social svg{width:17px;height:17px;fill:currentColor}
.hero-social a:hover{background:var(--gold);border-color:var(--gold);transform:translateY(-3px)}
footer { text-align: center; padding: 48px 24px; }
footer .name { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.2em; text-transform: lowercase; }
footer p { font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; color: var(--muted-foreground); margin-top: 10px; }

.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background-image: var(--gradient-gold); color: oklch(0.99 0.005 90); font-size: 20px;
  box-shadow: var(--shadow-lift); transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }

/* REVEAL / KEYFRAMES */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.rise { animation: rise 1.1s cubic-bezier(.22,1,.36,1) both; }
.shimmer {
  background-image: linear-gradient(100deg, var(--gold) 0%, oklch(0.92 0.05 88) 45%, var(--gold) 60%);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite; font-style: italic;
}
@keyframes kenburns { 0% { transform: scale(1.08) } 100% { transform: scale(1.18) translateY(-2%) } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes spin { to { transform: rotate(360deg) } }
@keyframes rise { from { opacity: 0; transform: translateY(40px) } to { opacity: 1; transform: none } }
@keyframes shimmer { 0% { background-position: -200% 0 } 100% { background-position: 200% 0 } }
@keyframes sheen { 0% { transform: translateX(-120%) skewX(-18deg) } 100% { transform: translateX(220%) skewX(-18deg) } }
@keyframes pulse { 0% { transform: scale(.7); opacity: .9 } 100% { transform: scale(2.1); opacity: 0 } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}