/* ==========================================================================
   Cafè De Paris — Lounge Bar & Shisha, Gostivar
   Dizajn phone-first. Të gjitha media query janë min-width (mobile → desktop).
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg:          #0B0910;
  --bg-2:        #100C16;
  --bg-3:        #16111D;
  --surface:     rgba(255, 255, 255, 0.045);
  --surface-2:   rgba(255, 255, 255, 0.075);
  --line:        rgba(255, 255, 255, 0.10);
  --line-soft:   rgba(255, 255, 255, 0.06);

  --text:        #F7F3F7;
  --muted:       #A79FB0;
  --faint:       #6F6878;

  --pink:        #FF2E74;
  --pink-2:      #FF6A9C;
  --pink-dim:    rgba(255, 46, 116, 0.14);
  --gold:        #E9C783;

  --radius:      18px;
  --radius-lg:   26px;
  --radius-pill: 999px;

  --shadow:      0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-pink: 0 10px 30px rgba(255, 46, 116, 0.35);

  --header-h:    64px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  --wrap:        1180px;
  --pad:         20px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Ankorat të mos fshihen nën kokën sticky */
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
figure, blockquote, p { margin: 0; }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--pink); color: #fff; }

/* ---------- 3. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: 72px; position: relative; }
.section--tight { padding-block: 56px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--pink);
}

.section-title {
  font-size: clamp(1.9rem, 8vw, 3.1rem);
  margin-bottom: 14px;
  max-width: 18ch;
}

.section-lead {
  color: var(--muted);
  font-size: 15px;
  max-width: 52ch;
  margin: 0;
}

.head { margin-bottom: 34px; }
.head--center { text-align: center; }
.head--center .section-title { margin-inline: auto; }
.head--center .section-lead { margin-inline: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--pink) 0%, #FF5C8D 100%);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.btn--block { width: 100%; }

@media (hover: hover) {
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 46, 116, 0.45); }
  .btn--ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.25); }
}

/* ---------- 5. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: var(--bg);
  border-bottom-color: var(--line-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }

.header__right { display: flex; align-items: center; gap: 10px; }

/* Language pills */
.lang {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: rgba(11, 9, 16, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.lang button {
  min-height: 42px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.lang button[aria-pressed="true"] {
  background: var(--pink);
  color: #fff;
}
@media (hover: hover) {
  .lang button:not([aria-pressed="true"]):hover { color: var(--text); background: var(--surface-2); }
}

/* Burger */
.burger {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(11, 9, 16, 0.55);
}
.burger span {
  position: relative;
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after  { top: 5.5px; }

body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translateY(5.5px) rotate(45deg); }
body.nav-open .burger span::after  { transform: translateY(-5.5px) rotate(-45deg); }

.nav-desktop { display: none; }

/* ---------- 6. Mobile nav overlay ---------- */
.navsheet {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: linear-gradient(170deg, var(--bg-3) 0%, var(--bg) 70%);
  padding: calc(var(--header-h) + 28px) var(--pad) calc(28px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
}
body.nav-open .navsheet { opacity: 1; visibility: visible; transform: none; }

.navsheet__links li { border-bottom: 1px solid var(--line-soft); }
.navsheet__links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 2px;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.navsheet__links a span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.1em;
}
@media (hover: hover) { .navsheet__links a:hover { color: var(--pink-2); padding-left: 8px; } }

.navsheet__foot { display: grid; gap: 14px; }
.navsheet__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
  color: var(--muted);
}
.navsheet__meta a { color: var(--text); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-2);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 8px;
  background: var(--bg-2);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Në telefon prerja e ngushtë e priste gotën e kafesë përgjysmë në cepin e
   djathtë. Zhvendosim fokusin te kokrrat, që të mos duket asnjë cep i prerë. */
@media (max-width: 959px) {
  .hero__media img { object-position: 20% center; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 -2px;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(255, 46, 116, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 9, 16, 0.72) 0%, rgba(11, 9, 16, 0.45) 35%,
      rgba(16, 12, 22, 0.96) 88%, var(--bg-2) 100%);
}

/* Përmbajtja ulet më poshtë, që foto e sfondit të marrë më shumë hapësirë sipër.
   env(safe-area-inset-bottom) e mban larg shiritit të iPhone-it. */
.hero__inner {
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  padding-top: calc(var(--header-h) + 40px);
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px 7px 11px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 20px;
}
.badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 46, 116, 0.25);
}

.hero__title {
  font-size: clamp(3rem, 15vw, 7.5rem);
  line-height: 0.94;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--pink-2);
}

.hero__tagline {
  color: rgba(247, 243, 247, 0.82);
  font-size: 15.5px;
  max-width: 34ch;
  margin: 0 0 28px;
}

.hero__cta { display: flex; flex-direction: column; gap: 11px; }

.hero__scroll {
  display: none;
  margin-top: 40px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(var(--pink), transparent);
}

/* ---------- 8. Quick facts strip ---------- */
.facts {
  /* Vetëm vija poshtë. Vija sipër binte pikërisht mbi fundin e errët të hero-s
     dhe dukej si një çarje e bardhë. */
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.facts__grid { display: grid; }
.fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}
.fact + .fact { border-top: 1px solid var(--line-soft); }
.fact__ico {
  width: 38px; height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-dim);
  color: var(--pink-2);
}
.fact__ico svg { width: 17px; height: 17px; }
.fact__k {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
}
.fact__v { font-size: 14.5px; font-weight: 500; color: var(--text); }

/* ---------- 9. About ---------- */
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}
.about__media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(255, 46, 116, 0.2));
  pointer-events: none;
}

.about p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }

.feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 13px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 500;
}
.feat svg { width: 17px; height: 17px; color: var(--pink); flex: none; }

/* ---------- 10. Menu ---------- */
.menu { background: var(--bg-2); }


.course + .course { margin-top: 42px; }
.course__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.course__title { font-size: 25px; color: var(--gold); }
.course__rule { flex: 1; height: 1px; background: var(--line); }

.dish {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.dish__name { font-size: 15px; font-weight: 400; }
.dish__lead {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  min-width: 12px;
}
.dish__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--pink-2);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dish__price i {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--faint);
  margin-left: 3px;
}

.menu__note {
  margin-top: 34px;
  font-size: 12.5px;
  color: var(--faint);
  text-align: center;
}

/* ---------- 11. Gallery ---------- */
.gallery__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 76%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(var(--pad) * -1);
  padding: 4px var(--pad);
}
.gallery__rail::-webkit-scrollbar { display: none; }

.shot {
  position: relative;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 5;
  display: block;
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 9, 16, 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .shot:hover img { transform: scale(1.05); }
  .shot:hover::after { opacity: 1; }
}

/* ---------- 12. Reviews + counters ---------- */
.reviews { background: var(--bg-2); }

.revs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 calc(var(--pad) * -1);
  padding: 4px var(--pad);
}
.revs::-webkit-scrollbar { display: none; }

.rev {
  scroll-snap-align: center;
  padding: 32px 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev__stars { display: flex; gap: 3px; color: var(--gold); }
.rev__stars svg { width: 14px; height: 14px; }
.rev__title { font-size: 19px; }
.rev__text { color: var(--muted); font-size: 14px; margin: 0; }
.rev__quote {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.35;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--bg-2); padding: 24px 14px; text-align: center; }
.stat__n {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: var(--pink-2);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__l {
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: 0.06em;
  margin-top: 7px;
  display: block;
}

/* ---------- 13. Visit ---------- */
.visit__card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 46, 116, 0.16), transparent 60%),
    var(--surface);
  padding: 30px 22px;
}
.info { display: grid; gap: 2px; margin: 26px 0; }
.info__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}
.info__row:last-child { border-bottom: 1px solid var(--line-soft); }
.info__ico { color: var(--pink); flex: none; margin-top: 2px; }
.info__ico svg { width: 18px; height: 18px; }
.info__k {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
}
.info__v { font-size: 15px; font-weight: 500; }
.info__v a { border-bottom: 1px solid transparent; transition: border-color 0.2s; }
@media (hover: hover) { .info__v a:hover { border-bottom-color: var(--pink); } }

.visit__actions { display: grid; gap: 10px; }

/* ---------- 14. Footer ---------- */
.footer {
  padding: 40px 0 calc(96px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.footer img { height: 54px; width: auto; margin: 0 auto 16px; }
.footer__tag { font-size: 13px; color: var(--muted); }
.footer__legal { font-size: 12px; color: var(--faint); margin-top: 18px; }
.footer__socials { display: flex; justify-content: center; gap: 10px; margin: 20px 0 4px; }
.footer__socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer__socials svg { width: 18px; height: 18px; }
@media (hover: hover) {
  .footer__socials a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
}

/* ---------- 15. Sticky booking bar (mobile) ---------- */
.bookbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 10px;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
}
.bookbar.is-shown { transform: none; }
.bookbar .btn { flex: 1; padding-block: 13px; }
.bookbar .btn--ghost { flex: 0 0 52px; padding-inline: 0; }
body.nav-open .bookbar { transform: translateY(120%); }

/* ---------- 16. Lightbox ---------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 4, 9, 0.96);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 60px 14px 8px;
  min-height: 0;
}
.lb__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.lb__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px var(--pad) calc(20px + env(safe-area-inset-bottom));
}
.lb__cap { font-size: 13px; color: var(--muted); }
.lb__count { font-size: 12px; color: var(--faint); font-variant-numeric: tabular-nums; }
.lb__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: background 0.2s;
}
.lb__btn svg { width: 18px; height: 18px; }
.lb__btn:active { background: var(--pink); }
.lb__nav { display: flex; gap: 8px; }
.lb__close { position: absolute; top: 12px; right: 12px; }

/* ---------- 17. Reveal on scroll ---------- */
/* Fshihen vetëm nëse JS punon — përndryshe teksti do të mbetej i padukshëm. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   18. Tablet  ≥ 640px
   ========================================================================== */
@media (min-width: 640px) {
  :root { --pad: 32px; }

  .hero__cta { flex-direction: row; }
  .facts__grid { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .fact { flex-direction: column; align-items: flex-start; padding: 26px 22px; gap: 12px; }
  .fact + .fact { border-top: 0; border-left: 1px solid var(--line-soft); }
  .feats { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .gallery__rail { grid-auto-columns: 42%; }
  .revs { grid-auto-columns: 55%; }
  .visit__actions { grid-template-columns: 1fr 1fr; }
  .visit__card { padding: 40px 34px; }
}

/* ==========================================================================
   19. Desktop  ≥ 960px
   ========================================================================== */
@media (min-width: 960px) {
  :root { --header-h: 76px; --pad: 40px; }

  .section { padding-block: 120px; }
  .section--tight { padding-block: 80px; }

  .burger, .navsheet { display: none; }

  .nav-desktop { display: flex; align-items: center; gap: 6px; }
  .nav-desktop a {
    padding: 9px 14px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.22s, background 0.22s;
  }
  .nav-desktop a:hover, .nav-desktop a.is-active { color: var(--text); background: var(--surface); }

  .brand img { height: 48px; }

  .hero { align-items: center; }
  .hero__inner { padding-block: 0; }
  .hero__scroll { display: inline-flex; }
  .hero__tagline { font-size: 17px; }

  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about__media { margin-bottom: 0; }
  .about__media img { aspect-ratio: 3 / 4; height: auto; }

  .courses { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; align-items: start; }
  .course + .course { margin-top: 0; }
  .course { margin-bottom: 46px; }

  .gallery__rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    gap: 16px;
    margin: 0;
    padding: 0;
  }
  .shot { aspect-ratio: 1; }
  .shot:nth-child(1), .shot:nth-child(8) { aspect-ratio: 1 / 1.3; }

  .revs {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  .visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .visit__actions { grid-template-columns: 1fr; }

  .bookbar { display: none; }
  .footer { padding-bottom: 46px; }

  .lb__stage { padding: 24px 80px 12px; }
  .lb__close { top: 22px; right: 26px; }
}

/* ---------- 20. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- 21. Pikat e karuselit (galeria + vlerësimet) ---------- */
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 18px;
}
.rail-dots button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
}
.rail-dots button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.22);
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}
.rail-dots button.is-on::before {
  width: 22px;
  background: var(--pink);
}
@media (hover: hover) {
  .rail-dots button:hover::before { background: rgba(255, 255, 255, 0.45); }
  .rail-dots button.is-on:hover::before { background: var(--pink); }
}

/* Në desktop këto bëhen rrjetë — pikat nuk duhen (JS-i i fsheh gjithashtu) */
@media (min-width: 960px) {
  .rail-dots { display: none !important; }
}

/* Kopjet e karuselit shërbejnë vetëm për rrotullimin e pafund në telefon.
   Në desktop këto rreshtohen si rrjetë, prandaj kopjet hiqen. */
@media (min-width: 960px) {
  .gallery__rail > [data-clone],
  .revs > [data-clone] { display: none !important; }
}

/* Kredia e dizajnerit — e veçuar si distinktiv, që të dallohet qartë */
.footer__by {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.footer__by strong {
  color: var(--pink-2);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Shigjeta shtohet me CSS, që të mos fshihet kur ndërrohet gjuha */
.footer__by::after {
  content: "\2197";              /* ↗ */
  font-size: 12px;
  color: var(--pink-2);
  transition: transform 0.25s var(--ease);
}

.footer__by {
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
              transform 0.25s var(--ease);
}
.footer__by:active { transform: scale(0.97); }

@media (hover: hover) {
  .footer__by:hover {
    border-color: var(--pink);
    background: var(--pink-dim);
    color: var(--text);
  }
  .footer__by:hover::after { transform: translate(2px, -2px); }
}

/* ==========================================================================
   22. ATMOSFERA — lëvizje e ngadaltë, e vazhdueshme (stil lounge)
   Të gjitha respektojnë "prefers-reduced-motion" (seksioni 20).
   ========================================================================== */

/* --- Hero: foto zmadhohet ngadalë, si në film (Ken Burns) ---------------- */
@keyframes heroDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.hero__media img {
  animation: heroDrift 45s linear infinite alternate;
  transform-origin: 30% 55%;
}

/* --- Hero: përmbajtja hyn në valë, jo e gjitha përnjëherë --------------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero__inner > * { animation: riseIn 0.9s var(--ease) both; }
.hero__inner > .badge         { animation-delay: 0.20s; }
.hero__inner > .hero__title   { animation-delay: 0.34s; }
.hero__inner > .hero__tagline { animation-delay: 0.48s; }
.hero__inner > .hero__cta     { animation-delay: 0.62s; }
.hero__inner > .hero__scroll  { animation-delay: 0.78s; }

/* --- Butoni kryesor merr frymë ngadalë ---------------------------------- */
@keyframes ctaBreathe {
  0%, 100% { box-shadow: 0 10px 30px rgba(255, 46, 116, 0.32); }
  50%      { box-shadow: 0 12px 40px rgba(255, 46, 116, 0.58); }
}
.hero__cta .btn--primary,
.visit__actions .btn--primary {
  animation: ctaBreathe 4s ease-in-out 1.6s infinite;
}
.hero__cta .btn--primary:hover,
.visit__actions .btn--primary:hover { animation: none; }

/* --- Vija e artë pranë çdo kategorie vizatohet kur shfaqet -------------- */
.course__rule {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease) 0.15s;
}
.js .reveal.is-in .course__rule,
.course__head:not(.reveal) .course__rule { transform: scaleX(1); }

/* --- Karuselet: kartat anësore zbehen, ajo në qendër del përpara ------- */
/* Fotot janë të ndritshme, prandaj zbehen më shumë. Kartat e vlerësimeve janë
   të errëta mbi sfond të errët — nëse zbehen shumë, anët duken sërish bosh. */
.gallery__rail > * {
  opacity: 0.4;
  transition: opacity 0.5s var(--ease);
}
.revs > * {
  opacity: 0.62;
  transition: opacity 0.5s var(--ease);
}
.gallery__rail > .is-current,
.revs > .is-current { opacity: 1; }

@media (min-width: 960px) {
  /* Në desktop këto janë rrjetë — asgjë nuk zbehet */
  .gallery__rail > *,
  .revs > * { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
  .hero__cta .btn--primary,
  .visit__actions .btn--primary { animation: none; }
  .course__rule { transform: scaleX(1); }
  .gallery__rail > *, .revs > * { opacity: 1; }
}
