/* =========================================================================
   Referendum 21 — stylesheet
   Struktura:  1) Tokens  2) Reset  3) Layout  4) Komponentë  5) Seksione
               6) Footer   7) Lëvizje  8) Responsive
   ========================================================================= */

/* ─────────────── 1. TOKENS ─────────────── */
:root {
  /* ── Paleta e markës ── */
  --forest:   #1B5E3A;   /* aksenti kryesor, tituj, butona */
  --deep:     #0E3D2D;   /* shirita zyrtarë, footer */
  --sage:     #879D75;   /* aksent dytësor */
  --moss:     #B4C2A8;   /* sfonde të buta */
  --charcoal: #191B1D;   /* teksti */
  --stone:    #E8E3D6;   /* seksione editoriale */
  --offwhite: #F8F7F3;   /* sfondi kryesor */

  /* ── Rolet (modaliteti i çelët) ── */
  --paper:        var(--offwhite);
  --paper-2:      var(--stone);
  --surface:      #FFFFFF;
  --ink:          var(--charcoal);
  --ink-2:        #464B47;
  --muted:        #5F6660;   /* i errësuar që teksti dytësor të kalojë AA edhe mbi Warm Stone */
  --line:         rgba(25, 27, 29, .13);
  --line-soft:    rgba(25, 27, 29, .07);

  --accent:       var(--forest);
  --accent-ink:   var(--deep);
  --accent-soft:  #E2EADC;
  --sage-soft:    #EDF1E8;
  --on-accent:    #FFFFFF;   /* teksti mbi sfond aksenti */

  --shadow-sm: 0 1px 2px rgba(14, 61, 45, .06), 0 2px 8px rgba(14, 61, 45, .05);
  --shadow-md: 0 2px 4px rgba(14, 61, 45, .06), 0 12px 28px -8px rgba(14, 61, 45, .14);
  --shadow-lg: 0 4px 8px rgba(14, 61, 45, .05), 0 24px 56px -16px rgba(14, 61, 45, .22);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --wrap: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 64px;

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:       #0F1310;
    --paper-2:     #161B16;
    --surface:     #1C221D;
    --ink:         #F1F1EA;
    --ink-2:       #C7CCC5;
    --muted:       #8C938B;
    --line:        rgba(241, 241, 234, .15);
    --line-soft:   rgba(241, 241, 234, .08);

    /* Forest Green është shumë i errët mbi sfond të errët — ndriçohet. */
    --accent:      #5FAE80;
    --accent-ink:  #8ACBA3;
    --accent-soft: #1A2A21;
    --sage:        #9DBE95;
    --sage-soft:   #1C241C;
    --on-accent:   #0B1A12;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
    --shadow-md: 0 12px 28px -10px rgba(0,0,0,.6);
    --shadow-lg: 0 24px 56px -18px rgba(0,0,0,.7);
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -.022em; font-weight: 700; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); }
a:hover { text-decoration-color: currentColor; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0; z-index: 999;
  transform: translate(-50%, -120%);
  background: var(--ink); color: var(--paper);
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ─────────────── 3. LAYOUT ─────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(1.85rem, 3.4vw, 2.75rem); }
.section--tint { background: var(--paper-2); }

.section__head { max-width: 720px; margin-bottom: clamp(1rem, 2vw, 1.4rem); }

.section__kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}

.section__title {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin-bottom: .6rem;
}

.section__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.17rem);
  color: var(--ink-2);
  max-width: 60ch;
}

/* ─────────────── 4. KOMPONENTË ─────────────── */

/* --- Butoni --- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.35rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  font: inherit; font-weight: 600; font-size: .97rem;
  text-decoration: none; cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-1.5px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
  --btn-bd: transparent;
  box-shadow: 0 1px 2px rgba(0,0,0,.12), 0 8px 20px -8px color-mix(in srgb, var(--accent) 60%, transparent);
}
.btn--ghost { --btn-bg: var(--surface); }
.btn--sm { padding: .5rem 1rem; font-size: .88rem; }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.03rem; }

/* --- Shiriti i sloganit --- */
.topbar {
  background: var(--deep);
  color: color-mix(in srgb, var(--offwhite) 92%, transparent);
}
.topbar__inner {
  display: flex; justify-content: flex-end; align-items: center;
  min-height: 30px;
}
.topbar__slogan {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-align: right;
  padding-block: .4rem;
}

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.site-header__rule {
  height: 3px;
  background: linear-gradient(90deg, var(--deep), var(--forest) 45%, var(--sage));
}

.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 1.25rem;
}

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
/* Marka = assets/favicon.svg. Cepat e rrumbullakosur dhe sfondi i gjelbër
   janë brenda vetë SVG-së, ndaj këtu caktohet vetëm përmasa. */
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__mark--lg { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: .97rem; letter-spacing: -.02em; }
.brand__text span { font-size: .72rem; color: var(--muted); }

/* --- Organizatat në header (djathtas lart) --- */
.header-orgs {
  display: flex; align-items: center;
  gap: clamp(.5rem, 1.6vw, 1.35rem);
  margin-left: auto;
  min-width: 0;
}
.partner {
  display: inline-flex; align-items: center;
  text-decoration: none;
  opacity: .82;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.partner:hover { opacity: 1; transform: translateY(-1px); }
.partner img {
  height: 30px; width: auto; max-width: 116px;
  object-fit: contain;
}
/* Emri me tekst shfaqet vetëm nëse logoja mungon (shih script.js) */
.partner__name { font-weight: 700; font-size: .84rem; letter-spacing: -.015em; color: var(--ink-2); }
.partner:not(.is-fallback) .partner__name { display: none; }
.partner.is-fallback img { display: none; }
/* Logot janë të errëta — në sfond të errët ndriçohen lehtë që të mos zhduken. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .partner img { filter: brightness(1.35) contrast(.92); }
}

/* --- Hero --- */
.hero {
  position: relative;
  padding-block: clamp(1.1rem, 2.2vw, 1.75rem) clamp(1.35rem, 2.6vw, 2rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: -30% -10% auto -10%; height: 620px;
  background:
    radial-gradient(46% 60% at 22% 32%, color-mix(in srgb, var(--forest) 14%, transparent), transparent 70%),
    radial-gradient(40% 52% at 78% 18%, color-mix(in srgb, var(--sage) 22%, transparent), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .38rem .9rem .38rem .7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: .7rem;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--forest);
}

.hero__title {
  font-size: clamp(1.9rem, 4.6vw, 3.25rem);
  letter-spacing: -.033em;
  font-weight: 800;
  margin-bottom: .55rem;
  text-wrap: balance;
}
.hero__title-accent {
  display: block;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-2);
  max-width: 60ch;
  margin-bottom: 1.05rem;
  text-wrap: pretty;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.15rem;
}

/* --- Numëruesi --- */
.counter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(.9rem, 2vw, 1.2rem);
  box-shadow: var(--shadow-md);
}

.counter__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: .7rem;
}

.live {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; font-weight: 700; color: var(--accent);
  letter-spacing: -.01em;
}
.live__dot {
  position: relative;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.live__dot::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; background: var(--accent);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(2.8); opacity: 0; }
}

.counter__updated { font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.counter__bar {
  position: relative;
  height: 50px;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: flex; align-items: center;
}
.counter__fill {
  position: relative;
  height: 100%;
  min-width: 92px;
  background: linear-gradient(100deg, var(--deep), var(--forest) 60%, var(--sage));
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 1.35rem;
  transition: width 1.6s var(--ease);
}
.counter__fill::after {   /* shkëlqim që kalon mbi shiritin */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: sheen 3.6s var(--ease) 1.4s infinite;
}
@keyframes sheen { to { transform: translateX(100%); } }

.counter__value {
  position: relative; z-index: 1;
  color: var(--on-accent); font-weight: 800;
  font-size: clamp(1.3rem, 3.4vw, 1.85rem);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.counter__goal {
  position: absolute; right: 1.35rem;
  font-weight: 700; font-size: 1rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.counter__note { margin-top: .65rem; font-size: .88rem; color: var(--ink-2); }
.counter__note strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* --- Menuja si butona, nën qytetet --- */
.chips__label {
  margin: 1.5rem 0 .6rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.chips {
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .62rem 1.15rem;
  background: var(--surface);
  border: 1.5px solid color-mix(in srgb, var(--accent) 32%, var(--line));
  border-radius: var(--radius-pill);
  font-size: .84rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent-ink); text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease),
              box-shadow .18s var(--ease);
}
.chip span { font-size: .82em; opacity: .6; transition: opacity .18s var(--ease); }
.chip:hover {
  background: var(--accent); color: var(--on-accent); border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.chip:hover span { opacity: .9; }
.chip:active { transform: translateY(0); }

/* --- Callout --- */
.callout {
  display: flex; gap: .9rem; align-items: flex-start;
  margin-top: 1.1rem;
  padding: 1.05rem 1.3rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: var(--radius);
  font-size: .96rem; color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout__icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 24px; height: 24px; margin-top: 1px;
  background: var(--accent); color: var(--on-accent);
  border-radius: 50%;
  font-weight: 800; font-size: .85rem;
}

/* --- Qytetet e tjera (butona me hartë që hapet) --- */
.cities__label {
  margin: 1.35rem 0 .55rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: .7rem;
  align-items: start;   /* një kuti e hapur nuk i zgjat të tjerat */
}
.city {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.city:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.city[open] { box-shadow: var(--shadow-md); }

.city__btn {
  display: flex; align-items: center; gap: .6rem;
  padding: .78rem 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 650; font-size: 1rem; letter-spacing: -.015em;
}
.city__btn::-webkit-details-marker { display: none; }
.city__chev {
  margin-left: auto; flex-shrink: 0;
  width: 9px; height: 9px;
  border-right: 2.2px solid var(--accent);
  border-bottom: 2.2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.city[open] .city__chev { transform: rotate(-135deg) translateY(-2px); }

.city__panel { border-top: 1px solid var(--line); }
.city__map { aspect-ratio: 16 / 11; background: var(--paper-2); }
.city__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.city__body { padding: .8rem 1rem 1rem; display: flex; flex-direction: column; gap: .7rem; }
.city__addr { font-size: .9rem; color: var(--ink-2); }
.city__actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ─────────────── 5. SEKSIONE ─────────────── */

/* --- Pikat e nënshkrimit --- */
.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.place {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.place:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.place__map {
  position: relative;
  aspect-ratio: 16 / 8.5;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.place__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.place__body { padding: 1rem 1.15rem 1.15rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.place__name { font-size: 1.28rem; }
.place__addr { color: var(--ink-2); font-size: .96rem; }
.place__hours {
  display: inline-flex; align-items: center; gap: .45rem;
  align-self: flex-start;
  padding: .3rem .7rem;
  background: var(--sage-soft);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
}
.place__actions { margin-top: auto; padding-top: 1rem; display: flex; gap: .6rem; flex-wrap: wrap; }

/* --- Vepro / veprimet --- */
.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));  /* 2 kolona si në skicë */
  gap: .8rem;
}
.action {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.2rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.action:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--sage) 45%, var(--line));
  box-shadow: var(--shadow-md);
}
.action__num {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--sage-soft); color: var(--accent-ink);
  border-radius: 11px;
  font-size: .82rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.action__body { min-width: 0; }
.action__body h3 { font-size: 1.03rem; margin-bottom: .18rem; }
.action__body p { font-size: .88rem; color: var(--muted); }
.action__link {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem .85rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink); font: inherit; font-size: .84rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.action__link:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.action__link span { transition: transform .18s var(--ease); }
.action__link:hover span { transform: translateX(2px); }

/* ─────────────── 6. FOOTER ─────────────── */
.site-footer {
  background: var(--deep);
  color: color-mix(in srgb, var(--paper) 88%, transparent);
  padding-block: clamp(3rem, 7vw, 4.5rem) 2.5rem;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-footer { background: #082118; }
}

.site-footer__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__brand p { font-size: .97rem; line-height: 1.5; }
.site-footer__brand strong { color: #fff; font-size: 1.06rem; letter-spacing: -.02em; }

.site-footer__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 2.5rem 0 1.1rem;
}

.orgs { display: flex; flex-wrap: wrap; gap: .6rem; }
.org {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.org:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.3); }
.org a {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  white-space: nowrap;
}
.org a + a { border-left: 1px solid rgba(255,255,255,.14); }
.org a:hover { color: #fff; }
.org svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .75; }

.site-footer__bottom {
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap;
  font-size: .86rem; color: rgba(255,255,255,.6);
}
.site-footer__bottom a { color: rgba(255,255,255,.85); }
.site-footer__legal { max-width: 46ch; }

/* ─────────────── 7. LËVIZJE ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* ─────────────── 8. RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .partner img { height: 26px; max-width: 92px; }
}

@media (max-width: 680px) {
  /* Header-i: mbahet marka + logot. Nënteksti hiqet për hapësirë. */
  .brand__text span { display: none; }
  .partner img { height: 22px; max-width: 66px; }
  .header-orgs { gap: .55rem; }

  .action { flex-wrap: wrap; }
  .action__link { margin-left: 0; width: 100%; justify-content: center; margin-top: .4rem; }
  .site-footer__bottom { flex-direction: column; gap: .6rem; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .counter__bar { height: 52px; }
  .counter__goal { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .places { grid-template-columns: 1fr; }
  .brand__text strong { font-size: .88rem; }
  .partner img { height: 20px; max-width: 56px; }
  .chip { font-size: .76rem; padding: .38rem .7rem; }
}

/* Në telefonat e ngushtë emri i markës hiqet fare, që të katër logot
   të rrinë në një rresht pa dalë jashtë ekranit. */
@media (max-width: 430px) {
  .topbar__slogan { font-size: .61rem; letter-spacing: .1em; }
  .brand__text { display: none; }
  .site-header__inner { gap: .75rem; }
  .header-orgs { gap: .45rem; }
  .partner img { height: 18px; max-width: 48px; }
}

@media print {
  .site-header, .chips, .chips__label, .topbar,
  .hero__glow, .place__map, .hero__actions { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .section { padding-block: 1.5rem; break-inside: avoid; }
}
