

:root {

  --forest:   #1B5E3A;
  --deep:     #0E3D2D;
  --sage:     #879D75;
  --moss:     #B4C2A8;
  --charcoal: #191B1D;
  --stone:    #E8E3D6;
  --offwhite: #FFFFFF;

  --paper:        var(--offwhite);
  --paper-2:      var(--stone);
  --surface:      #FFFFFF;
  --ink:          var(--charcoal);
  --ink-2:        #464B47;
  --muted:        #5F6660;
  --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;

  --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: 80px;

  --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);

    --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);
  }
}

*, *::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); }

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

.section { padding-block: clamp(1.6rem, 3.2vw, 2.5rem); }
.section--tint { background: var(--paper-2); }

main > section + section { border-top: 1px solid var(--line); }

.section__head { max-width: 720px; margin-bottom: clamp(.7rem, 1.5vw, 1.1rem); }

.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;
}



.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--soft-pink {
  --btn-bg: #fcf0f5;
  --btn-fg: #623648;
  --btn-bd: #efd5e0;
  box-shadow: 0 6px 18px rgba(98, 54, 72, .1);
}
.btn--soft-pink:hover {
  --btn-bg: #f8e3ec;
  --btn-bd: #e5bdce;
}
.btn--sm { padding: .5rem 1rem; font-size: .88rem; }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.03rem; }

.site-header {
  position: sticky; top: 0; z-index: 2000;
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--sage) 18%, transparent) 0%,
      transparent 14%,
      transparent 86%,
      color-mix(in srgb, var(--sage) 18%, transparent) 100%),
    color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(14, 61, 45, .12);
  transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 10px 32px rgba(14, 61, 45, .2); }

.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; }

.brand__mark { width: 52px; height: 52px; flex-shrink: 0; }
.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); }

.site-nav {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(.9rem, 2vw, 1.6rem);
  margin-left: auto;
  min-width: 0;
}
.site-nav__link {
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
  text-decoration: none;
  padding-block: .3rem;
  border-bottom: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--ink); }
.site-nav__link.is-active { color: var(--accent-ink); border-bottom-color: var(--accent); }
.site-nav__actions { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.site-nav__actions .btn--ghost {
  --btn-bg: #ecefeb;
  --btn-fg: #4f5752;
  --btn-bd: #d8ddd9;
}
.site-nav__actions .btn--ghost:hover {
  --btn-bg: #e2e6e3;
  --btn-bd: #c9cfcb;
}
.mobile-nav { display: none; }

.landing-alert {
  position: relative;
  z-index: 20;
  color: #765300;
  background: linear-gradient(90deg, #fffbe9, #fff4bd 50%, #fffbe9);
  border-block: 1px solid #e8c858;
  box-shadow: 0 7px 22px rgba(121,91,0,.12);
}
.landing-alert__inner { display: flex; align-items: center; justify-content: center; gap: .75rem; min-height: 48px; padding-block: .55rem; }
.landing-alert__status { width: .65rem; height: .65rem; flex: 0 0 auto; background: #ffc928; border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,201,40,.2); animation: landing-alert-pulse 1.8s ease-in-out infinite; }
.landing-alert p { font-size: .9rem; line-height: 1.35; text-align: center; }
.landing-alert a { flex: 0 0 auto; color: #765300; font-size: .84rem; font-weight: 850; text-decoration: none; border-bottom: 1px solid currentColor; }
.landing-alert a:hover { color: #4f3700; }
@keyframes landing-alert-pulse {
  0%, 100% { transform: scale(.85); box-shadow: 0 0 0 3px rgba(255,201,40,.2); opacity: .78; }
  50% { transform: scale(1.12); box-shadow: 0 0 0 7px rgba(255,201,40,.08); opacity: 1; }
}

.hero {
  position: relative;
  padding-block: clamp(2rem, 4.5vw, 3.5rem);
  overflow: hidden;
  background-image:
    linear-gradient(color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px);
  background-size: 20px 20px;
}
.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;
}

/* --- Rreshtimi i heroit: kopja majtas, vizuali djathtas — hero i vërtetë
   "landing", jo thjesht një titull dhe një paragraf i ngjeshur. --- */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-copy { min-width: 0; }

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

.hero__tagline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink-2);
  max-width: 48ch;
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: .75rem; }
.hero-actions .btn { min-height: 3.25rem; }
.hero-links { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .9rem; }
.hero-links .btn { font-size: .9rem; padding: .55rem 1.1rem; }

@media (max-width: 620px) {
  .landing-page .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .4rem;
    width: 100%;
  }
  .landing-page .hero-actions .btn {
    width: 100%;
    min-height: 2.85rem;
    padding: .68rem .35rem;
    font-size: clamp(.78rem, 3.6vw, .92rem);
  }
  .landing-page .hero-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .3rem;
    width: 100%;
    margin-top: .65rem;
  }
  .landing-page .hero-links .btn {
    width: 100%;
    min-height: 2.35rem;
    padding: .48rem .2rem;
    font-size: clamp(.66rem, 3vw, .78rem);
  }
}

/* Headers keep only the utility action buttons, so push them to the right edge
   (there is no .site-nav to consume the free space). */
.site-header .site-nav__actions { margin-left: auto; }

.signing-guide { padding-block: clamp(1.3rem, 2.8vw, 2rem); background: var(--deep); color: #fff; }
.signing-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.signing-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .8rem;
  padding: clamp(.85rem, 1.8vw, 1.15rem);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.signing-step__number { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; color: var(--deep); background: var(--sage); border-radius: 50%; font-size: .78rem; font-weight: 850; }
.signing-step h3 { color: #fff; font-size: clamp(1rem, 1.7vw, 1.15rem); margin-bottom: .3rem; }
.signing-step p { color: rgba(255,255,255,.76); font-size: .88rem; line-height: 1.45; }

.volunteer-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.volunteer-card {
  display: grid;
  gap: .4rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.volunteer-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.volunteer-card > span { color: var(--accent); font-size: .75rem; font-weight: 800; }
.volunteer-card h3 { font-size: 1.08rem; }
.volunteer-card p { color: var(--ink-2); font-size: .9rem; }
.volunteer-card strong { color: var(--accent-ink); font-size: .88rem; }

@media (max-width: 720px) {
  .signing-steps, .volunteer-actions { grid-template-columns: 1fr; }
  .signing-step { min-height: 0; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.counter {
  position: relative;
  background: var(--surface);
  border: 2px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.2vw, 1.35rem);
  box-shadow: var(--shadow-lg), 0 0 0 6px color-mix(in srgb, var(--accent) 8%, transparent);
}

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

.counter-kicker { display: inline-flex; align-items: center; gap: .55rem; }
.counter-kicker__icon { display: grid; place-items: center; width: 2rem; height: 2rem; color: #fff; background: var(--accent); border-radius: 50%; box-shadow: 0 6px 14px color-mix(in srgb, var(--accent) 25%, transparent); }
.counter-kicker__icon svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.counter__updated { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.counter__updated svg { width: 1rem; height: 1rem; padding: .12rem; color: var(--accent-ink); background: var(--accent-soft); border-radius: 50%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; box-sizing: content-box; }

.counter__bar {
  position: relative;
  height: 58px;
  background: var(--paper-2);
  border: 2px solid var(--deep);
  border-radius: var(--radius-pill);
  overflow: hidden;
  display: flex; align-items: center;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent),
              inset 0 1px 2px rgba(0,0,0,.06);
  animation: counter-glow 2.8s var(--ease) infinite;
}
@keyframes counter-glow {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent), inset 0 1px 2px rgba(0,0,0,.06); }
  50%      { box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 20%, transparent), inset 0 1px 2px rgba(0,0,0,.06); }
}
.counter__fill {
  position: relative;
  height: 100%;
  /* Grow with the formatted count ("1.083") so the digits never overflow
     into the track's left curve and get clipped. Percentage width still
     wins once the fill is wider than the number. */
  min-width: fit-content;
  background: linear-gradient(100deg, var(--deep), var(--forest) 45%, #3a9c62 78%, var(--sage));
  /* The track already clips the leading edge to its pill shape. Rounding the
     fill there as well exposed a dark crescent between the two curves. */
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  display: flex; align-items: center; justify-content: flex-end; gap: .45rem;
  padding: 0 1.15rem 0 1.3rem;
  transition: width 1.6s var(--ease);
}
.counter__people-icon { position: relative; z-index: 1; width: 1.25rem; height: 1.25rem; color: #fff; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.counter__fill::after {
  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;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.counter__goal {
  position: absolute; right: 1.35rem; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: 1rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.counter__goal svg { width: 1rem; height: 1rem; color: var(--accent-ink); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

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

.counter__track { position: relative; padding-top: 5.4rem; }
.counter__marks {
  position: absolute; inset: 0 0 auto 0;
  height: 5.4rem;
  margin: 0; padding: 0;
  list-style: none;
  pointer-events: none;
}
.counter__mark {
  position: absolute;
  top: 0;
  display: grid;
  grid-template-columns: 2.15rem max-content;
  align-items: center;
  gap: .45rem;
  min-height: 3rem;
  padding: .35rem .5rem;
  transform: translateX(-50%);
  color: var(--ink-2);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  opacity: .4;
  filter: grayscale(.4);
  transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
}
.counter__mark::after { content: ""; position: absolute; top: 100%; left: 50%; width: 2px; height: 1.55rem; background: color-mix(in srgb, var(--accent) 55%, var(--line)); transform: translateX(-50%); }
.counter__mark-icon { display: grid; place-items: center; width: 2.15rem; height: 2.15rem; color: var(--accent-ink); background: var(--accent-soft); border-radius: 50%; }
.counter__mark-icon svg { width: 1.05rem; height: 1.05rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.counter__mark-copy { display: flex; flex-direction: column; gap: .08rem; line-height: 1.12; }
.counter__mark-copy strong { color: var(--ink); font-size: .78rem; font-variant-numeric: tabular-nums; }
.counter__mark-copy small { color: var(--muted); font-size: .62rem; font-weight: 700; white-space: nowrap; }
.counter__mark:last-child { transform: translateX(-100%); }
.counter__mark.is-reached {
  opacity: 1;
  filter: none;
  transform: translateX(-50%) scale(1.08);
}
.counter__mark:last-child.is-reached { transform: translateX(-100%) scale(1.08); }

.milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
}
.milestone {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
  padding: .45rem .55rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: .62;
  transition: opacity .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.milestone.is-reached {
  opacity: 1;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: var(--accent-soft);
}
.milestone.is-current {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 28%, transparent);
}
.milestone__icon { display: grid; place-items: center; width: 2rem; height: 2rem; color: var(--accent-ink); background: var(--surface); border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line)); border-radius: 50%; flex-shrink: 0; }
.milestone__icon svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.milestone__copy {
  display: flex; flex-direction: column; min-width: 0;
  line-height: 1.2;
}
.milestone__copy strong {
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.milestone__copy span {
  font-size: .68rem;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.counter__pace {
  margin: .7rem 0 0;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent-ink);
  font-variant-numeric: tabular-nums;
}
.counter__pace[hidden] { display: none; }
.counter__pace em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}


.initiative-resources {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.declaration__panel {
  margin-top: .75rem;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.declaration__head {
  display: grid;
  grid-template-columns: minmax(10rem, .35fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  padding: clamp(1.35rem, 3.5vw, 2.5rem);
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
}
.declaration__head h3 {
  max-width: 22ch;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  color: var(--accent-ink);
  text-wrap: balance;
}
.declaration__meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.declaration__copy {
  max-width: 78ch;
  margin-inline: auto;
  padding: clamp(1.35rem, 4vw, 3rem);
  color: var(--ink-2);
}
.declaration__copy p + p { margin-top: 1.15rem; }
.declaration__lead {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 650;
}
.declaration__copy blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--sage-soft);
  border-left: 4px solid var(--accent);
  color: var(--accent-ink);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
  line-height: 1.45;
}
.declaration__signature {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.declaration--origin .declaration__copy {
  max-width: 74rem;
  padding: clamp(1.3rem, 3vw, 2.1rem) clamp(1.3rem, 3.2vw, 2.4rem);
  color: var(--ink-2);
}
.declaration--origin .declaration__copy p { line-height: 1.6; }
.declaration--origin .declaration__copy p + p { margin-top: .7rem; }
.declaration--origin .declaration__lead {
  max-width: 65ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.origin__subhead {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.75rem 0 .85rem;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
}
.origin__subhead::before {
  content: "";
  flex: 0 0 auto;
  width: .28rem;
  height: 1.05em;
  border-radius: 2px;
  background: var(--accent);
}
.origin__note {
  max-width: 68ch;
  margin: 0 0 1rem !important;
  color: var(--muted);
  font-size: .92rem;
}

.origin-goals {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.origin-goals > li {
  padding: .95rem 1.1rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 16%, transparent);
  border-radius: var(--radius);
}
.origin-goals__top {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .45rem;
}
.origin-goals__num {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.origin-goals h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
  color: var(--accent-ink);
}
.origin-goals p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
}

.origin-qualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.origin-qualities > li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .6rem;
  align-items: start;
  padding: .5rem 0;
  border-top: 1px solid var(--line-soft);
}
.origin-qualities > li:first-child,
.origin-qualities > li:nth-child(2) { border-top: 0; }
.origin-qualities > li > span {
  flex: 0 0 auto;
  min-width: 1.5rem;
  color: var(--accent-ink);
  font-size: .82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
  line-height: 1.5;
}
.origin-qualities p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
}

.origin-pledges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 0;
}
.origin-pledges article {
  padding: 1rem 1.15rem;
  background: var(--sage-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.origin-pledges__tag {
  margin: 0 0 .5rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.origin-pledges blockquote {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  font-size: .92rem;
  font-weight: 450;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-2);
}

/* Rreth misionit: dy deklaratat mbajnë gjithë seksionin — karta të plota në
   gjerësinë e kontejnerit, me etiketën majtas dhe tekstin si kolonë leximi. */
#si-nisi .origin-pledges { grid-template-columns: 1fr; max-width: none; gap: 1rem; }
#si-nisi .origin-pledges article {
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: clamp(1.25rem, 5vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 3.5vw, 2.4rem) clamp(1.5rem, 4vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}
#si-nisi .origin-pledges__tag {
  margin: 0;
  padding-top: .15rem;
  font-size: .8rem;
  line-height: 1.35;
}
#si-nisi .origin-pledges blockquote {
  max-width: 66ch;
  font-size: 1.075rem;
  font-style: normal;
  font-weight: 450;
  line-height: 1.75;
  color: var(--ink);
}
@media (max-width: 620px) {
  #si-nisi .origin-pledges article { grid-template-columns: 1fr; gap: .5rem; }
  #si-nisi .origin-pledges__tag { padding-top: 0; }
}

.declaration--process .declaration__copy {
  max-width: 60rem;
  padding: clamp(1.3rem, 3vw, 2.1rem) clamp(1.3rem, 3.2vw, 2.4rem);
}

.process-now {
  padding: 1.05rem 1.2rem;
  margin-bottom: 1.4rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.process-now__tag {
  margin: 0 0 .35rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.process-now h4 {
  margin: 0 0 .4rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
  line-height: 1.2;
  color: var(--ink);
}
.process-now p { margin: 0; font-size: .93rem; line-height: 1.55; color: var(--ink-2); }

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process-steps > li {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .2rem .85rem;
  padding: .6rem 0;
}

.process-steps > li::before {
  content: "";
  position: absolute;
  left: .97rem;
  top: 2.4rem;
  bottom: -.6rem;
  width: 2px;
  background: var(--line);
}
.process-steps > li:last-child::before { display: none; }

.process-steps__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.process-steps__body { display: flex; flex-direction: column; gap: .1rem; }
.process-steps__body strong { font-size: .96rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.process-steps__body small { font-size: .82rem; color: var(--muted); line-height: 1.4; }
.process-steps__state {
  justify-self: end;
  padding: .2rem .6rem;
  border-radius: var(--radius-pill);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.process-steps > li.is-done .process-steps__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}
.process-steps > li.is-done::before { background: var(--accent); }
.process-steps > li.is-done .process-steps__state { background: var(--accent-soft); color: var(--accent-ink); }

.process-steps > li.is-active .process-steps__num {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.process-steps > li.is-active .process-steps__body strong { color: var(--accent-ink); }
.process-steps > li.is-active .process-steps__state { background: var(--accent); color: var(--on-accent); }

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--sage-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-cta p { margin: 0; max-width: 44ch; font-size: .93rem; color: var(--ink-2); }
.process-cta .btn { flex: 0 0 auto; }

.declaration--faq .declaration__copy {
  max-width: 62rem;
  padding: clamp(1.1rem, 2.5vw, 1.75rem) clamp(1.2rem, 3vw, 2.1rem);
}
.faq__legal {
  margin: 1.15rem 0 0 !important;
  font-size: .8rem;
  font-style: italic;
  color: var(--muted);
}

.declaration--why .declaration__copy {
  max-width: 66rem;
  padding: clamp(1.3rem, 3vw, 2.1rem) clamp(1.3rem, 3.2vw, 2.4rem);
}
.declaration--why .declaration__lead { max-width: 68ch; }
.declaration--why .declaration__copy p + p { margin-top: .7rem; }
.declaration--why .declaration__copy p { line-height: 1.6; }

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .7rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.evidence-strip > li {
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
}
.evidence-strip strong {
  display: flex; align-items: baseline; justify-content: center; gap: .25rem;
  font-size: 1.55rem; font-weight: 800; color: var(--accent-ink);
  font-variant-numeric: tabular-nums;
}
.evidence-strip strong span { font-size: .8rem; font-weight: 700; color: var(--muted); }
.evidence-strip small { display: block; margin-top: .2rem; font-size: .78rem; color: var(--ink-2); line-height: 1.35; }

.reason-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 1.35rem 0 0;
}
.reason-card {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.reason-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.reason-card__n {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.reason-card__body { flex: 1 1 auto; font-size: .9rem; line-height: 1.55; }
.reason-card__body strong { display: block; margin-bottom: .2rem; color: var(--accent-ink); font-weight: 750; }
.reason-card__go {
  flex: 0 0 auto;
  align-self: center;
  font-size: .82rem; font-weight: 700; color: var(--accent-ink);
  white-space: nowrap;
}
.reasons-more { margin: 1.1rem 0 0; font-size: .92rem; }
.reasons-more a { font-weight: 700; color: var(--accent-ink); text-decoration: none; }
.reasons-more a:hover { text-decoration: underline; }

.why-stat {
  margin: 1.15rem 0 0;
  padding: 1.05rem 1.25rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--accent-ink);
}
.why-stat strong { color: var(--ink); }

.declaration--data .declaration__copy {
  max-width: 64rem;
  padding: clamp(1.3rem, 3vw, 2.1rem) clamp(1.3rem, 3.2vw, 2.4rem);
}
.declaration--data .declaration__lead { max-width: 70ch; }
.declaration--data .declaration__copy p { line-height: 1.6; max-width: 72ch; }

.data__subhead {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.6rem 0 .7rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
}
.data__subhead::before {
  content: "";
  flex: 0 0 auto;
  width: .28rem;
  height: 1.05em;
  border-radius: 2px;
  background: var(--accent);
}

.data-fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.2rem;
}
.data-fields li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .93rem;
  line-height: 1.4;
  color: var(--ink-2);
}
.data-fields li::before {
  content: "";
  position: absolute;
  left: .15rem;
  top: .18em;
  width: .5rem;
  height: .28rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.data-note {
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
  background: var(--sage-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.data-note strong { color: var(--ink); }

.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;
}

.shifts {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.shifts[hidden],
.shifts-extra[hidden] {
  display: none !important;
}
.shifts__label {
  margin: 0 0 .55rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.shifts__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin: 0;
  padding: 0;
}

.shifts-extra {
  margin-top: 1.15rem;
}

.shifts-extra .shift,
.places-container:not(.is-empty) .shift {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.shifts-extra .shift:hover,
.places-container:not(.is-empty) .shift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.shifts-extra .shift__mark,
.places-container:not(.is-empty) .shift__mark {
  display: block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 45%, transparent);
}
.shifts-extra .shift__body,
.places-container:not(.is-empty) .shift__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: .15rem;
}
.shifts-extra .shift__unit,
.places-container:not(.is-empty) .shift__unit {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.25;
}
.shifts-extra .shift__city,
.places-container:not(.is-empty) .shift__city {
  font-size: .84rem;
  color: var(--muted);
}
.shifts-extra .shift__when,
.places-container:not(.is-empty) .shift__when {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: .15rem;
}
.shifts-extra .shift__dot,
.places-container:not(.is-empty) .shift__dot {
  display: none;
}
.shifts-extra .shift__day,
.places-container:not(.is-empty) .shift__day {
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.shifts-extra .shift__time,
.places-container:not(.is-empty) .shift__time {
  font-weight: 700;
  font-size: .94rem;
  color: var(--accent-ink);
  font-variant-numeric: tabular-nums;
}

.places-container.is-empty #shifts .shift {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
  padding: .85rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.places-container.is-empty #shifts .shift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.places-container.is-empty #shifts .shift__mark {
  display: none;
}
.places-container.is-empty #shifts .shift__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: .1rem;
}
.places-container.is-empty #shifts .shift__unit {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -.015em;
  line-height: 1.25;
}
.places-container.is-empty #shifts .shift__city {
  font-size: .82rem;
  color: var(--muted);
}
.places-container.is-empty #shifts .shift__when {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--accent-ink);
  font-variant-numeric: tabular-nums;
  flex-wrap: wrap;
}
.places-container.is-empty #shifts .shift__day {
  color: var(--accent-ink);
}
.places-container.is-empty #shifts .shift__dot {
  display: inline;
  opacity: .5;
  color: var(--accent-ink);
}
.places-container.is-empty #shifts .shift__time {
  font-weight: 700;
  color: var(--accent-ink);
}

.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;
}
.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; }



.stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.stat { display: flex; flex-direction: column; gap: .15rem; }
.stat__value {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--accent-ink);
  font-variant-numeric: tabular-nums;
}
.stat__label { font-size: .92rem; color: var(--ink-2); }

.page-header {
  padding-block: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 2vw, 1.5rem);
}
.page-header__kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}
.page-header__kicker a { color: inherit; text-decoration: underline; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); }
.page-header__title {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin-bottom: .6rem;
}
.page-header__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.17rem);
  color: var(--ink-2);
  max-width: 62ch;
}

.wrap--article { max-width: 78ch; }
.research-content {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
}
.research-content h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: var(--ink);
  margin: 2.4rem 0 .9rem;
}
.research-content h2:first-child { margin-top: 0; }
.research-content h2.reason-detail {
  padding-top: 1.5rem;
  border-top: 3px solid var(--accent);
}
.research-content h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--accent-ink);
  margin: 1.75rem 0 .7rem;
}
.research-content h4 {
  font-size: 1rem;
  color: var(--ink);
  margin: 1.4rem 0 .5rem;
}
.research-content p { margin: 0 0 1rem; }
.research-content ul, .research-content ol {
  list-style: disc;
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}
.research-content ol { list-style: decimal; }
.research-content li { margin-bottom: .4rem; }
.research-content blockquote {
  margin: 1.25rem 0;
  padding: .9rem 1.15rem;
  background: var(--sage-soft);
  border-left: 4px solid var(--accent);
  color: var(--accent-ink);
  font-size: .98rem;
}
.research-content blockquote p { margin-bottom: .5rem; }
.research-content blockquote p:last-child { margin-bottom: 0; }
.research-content blockquote em { color: var(--ink-2); font-style: italic; }
.research-content strong { color: var(--ink); font-weight: 700; }
.research-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .9rem;
  -webkit-overflow-scrolling: touch;
}
.research-content th, .research-content td {
  padding: .55rem .7rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.research-content th { color: var(--ink); font-weight: 700; border-bottom-width: 2px; }
.research-content .keybox {
  margin: 1.25rem 0;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}
.research-content .keybox p:last-child { margin-bottom: 0; }

.learn-more {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.1rem);
}
.learn-more__card {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm), inset 4px 0 var(--accent);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.learn-more__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md), inset 4px 0 var(--accent); }
.learn-more__kicker {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}
.learn-more__card h3 { font-size: 1.15rem; }
.learn-more__card p { color: var(--ink-2); font-size: .95rem; }
.learn-more__cta { font-weight: 700; color: var(--accent-ink); font-size: .92rem; }

/* --- Organizatat mbështetëse (Rreth Nesh) — një seksion i plotë për
   secilën, jo karta të ngjeshura krah për krah. Media dhe teksti ndërrojnë
   anë çift pas çifti, si "Global", për ritëm vizual pa qenë monotone. --- */
.org-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.org-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
}
.org-section + .org-section { border-top: 1px solid var(--line); }
.org-section:nth-child(even) { grid-template-columns: 1fr 220px; }
.org-section:nth-child(even) .org-section__media { order: 2; }
.org-section__media {
  display: flex; align-items: center; justify-content: center;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), inset 4px 0 var(--accent);
}
.org-section__media img { max-width: 100%; max-height: 84px; object-fit: contain; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .org-section__media img { filter: brightness(1.35) contrast(.92); }
}
.org-section__body h3 { font-size: 1.35rem; margin-bottom: .2rem; }
.org-section__full { font-size: .88rem; color: var(--muted); margin-bottom: .75rem; }
.org-section__desc { color: var(--ink-2); margin-bottom: 1.15rem; }
.org-section__projects { margin-bottom: 1.15rem; }
.org-section__projects-label {
  font-size: .76rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}
.org-section__projects ul { list-style: disc; padding-left: 1.3rem; color: var(--ink-2); }
.org-section__projects li + li { margin-top: .3rem; }
.org-section__projects li.is-placeholder { color: var(--muted); font-style: italic; list-style: none; margin-left: -1.3rem; }
.org-section__links { display: flex; flex-wrap: wrap; gap: .3rem 1.1rem; }
.org-section__links a { font-size: .92rem; font-weight: 700; color: var(--accent-ink); text-decoration: none; }
.org-section__links a:hover { text-decoration: underline; }

@media (max-width: 680px) {
  .org-section,
  .org-section:nth-child(even) { grid-template-columns: 1fr; }
  .org-section:nth-child(even) .org-section__media { order: 0; }
  .org-section__media { max-width: 220px; }
}

.session-list { display: flex; flex-direction: column; gap: .55rem; }
.session-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.session-item > summary {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .95rem 1.15rem;
  cursor: pointer;
  list-style: none;
}
.session-item > summary::-webkit-details-marker { display: none; }
.session-item > summary:hover .session-summary-text h3 { color: var(--accent-ink); }
.session-index {
  display: grid; place-items: center;
  flex: 0 0 auto;
  width: 2rem; height: 2rem;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: 8px;
  font-size: .8rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.session-summary-text { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .25rem; }
.session-time {
  font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.session-summary-text h3 {
  font-size: .98rem; font-weight: 700; color: var(--ink); line-height: 1.35;
  transition: color .16s var(--ease);
}
.session-toggle {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 1.6rem; height: 1.6rem;
  color: var(--muted);
  transition: transform .22s var(--ease), color .16s var(--ease);
}
.session-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.session-item[open] .session-toggle { transform: rotate(180deg); color: var(--accent-ink); }
.session-body {
  padding: 0 1.15rem 1.05rem 1.15rem;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.6;
}
.session-body-copy p { margin: 0 0 .6rem; }
.session-body-copy p:last-child { margin-bottom: 0; }
.session-body { display: flex; flex-wrap: wrap; gap: 1rem; }
.session-body-copy { flex: 1 1 260px; min-width: 0; }
@media (max-width: 560px) {
  .session-item > summary { gap: .65rem; padding: .85rem .9rem; }
  .session-index { width: 1.7rem; height: 1.7rem; font-size: .74rem; }
  .session-body { padding: 0 .9rem .9rem; }
}
.partners__note { margin-top: 1.5rem; color: var(--ink-2); font-size: .95rem; }

.places__toolbar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .7rem;
  flex-wrap: wrap;
}
.btn--geo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.btn--geo svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.btn--geo.is-loading { opacity: .7; pointer-events: none; }

.places__note {
  font-size: .92rem;
  color: var(--ink-2);
  margin-bottom: .65rem;
}

.map-legend { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; margin-bottom: 1rem; color: var(--ink-2); font-size: .82rem; font-weight: 700; }
.map-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.map-legend__dot { width: 14px; height: 14px; border: 2px solid; border-radius: 50%; box-shadow: 0 2px 5px rgba(0, 0, 0, .12); }
.map-legend__dot--signing { background: #5fae80; border-color: #0e3d2d; }
.map-legend__dot--protected { background: #f06aa6; border-color: #8f2858; }

.map-layout {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  min-height: 520px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.map-sidebar { padding: 1rem; overflow: auto; max-height: 560px; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--moss) transparent; }
.map-sidebar__label {
  margin-bottom: .7rem;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.signing-region + .signing-region { margin-top: 1.6rem; }
.signing-region__title {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .8rem;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .02em;
  color: var(--ink-2);
}
.signing-region__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.map-city-list { display: grid; gap: .55rem; }
.map-city {
  width: 100%;
  display: grid;
  gap: .18rem;
  padding: 1rem;
  text-align: left;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s var(--ease), background-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.map-city:hover, .map-city.is-active { border-color: var(--accent); background: var(--accent-soft); box-shadow: var(--shadow-md); transform: translateX(3px); }
.map-city--active-location { border-color: #e4b83f; border-width: 2px; background: color-mix(in srgb, #ffefc2 55%, var(--surface)); box-shadow: 0 10px 28px rgba(121,91,0,.14), 0 0 0 3px rgba(228,184,63,.28); }
.map-city--active-location .map-city__date { color: #674d00; font-size: .9rem; font-weight: 850; }
.map-city--static { cursor: default; }
.map-city--static:hover { transform: none; border-color: #e4b83f; background: color-mix(in srgb, #fff5c7 48%, var(--surface)); }
.map-city__directions { display: inline-flex; align-items: center; justify-content: center; gap: .35rem; width: fit-content; margin-top: .85rem; padding: .5rem .8rem; color: #fff; background: var(--deep); border-radius: var(--radius-pill); font-size: .78rem; font-weight: 800; text-decoration: none; }
.map-city__directions:hover { background: var(--forest); box-shadow: var(--shadow-sm); }
.map-city__name { font-weight: 750; }
.map-city__address { color: var(--ink-2); font-size: .86rem; }
.map-city__date { color: var(--accent-ink); font-size: .83rem; font-weight: 700; }
.map-city__status { color: var(--muted); font-size: .76rem; }
.map-city__status--active { display: inline-flex; align-items: center; gap: .4rem; color: #795b00; font-weight: 800; }
.map-city__status--active::before { content: ""; width: .48rem; height: .48rem; background: #e4b83f; border-radius: 50%; box-shadow: 0 0 0 3px rgba(228,184,63,.2); }
.map-city__distance { color: var(--muted); font-size: .78rem; }
.map-city-empty { padding: 1rem .25rem; color: var(--ink-2); font-size: .92rem; }
.map-panel { min-height: 520px; border-left: 1px solid var(--line); }
.signing-map { width: 100%; height: 100%; min-height: 520px; background: var(--paper-2); }
.leaflet-popup-content { color: #191b1d; line-height: 1.5; }
.leaflet-popup-content a { color: #0e3d2d; font-weight: 700; }
.leaflet-interactive { transition: fill-opacity .18s ease, stroke-width .18s ease; }
.leaflet-interactive:hover { fill-opacity: 1; stroke-width: 5; }
.active-place-halo { display: grid; place-items: center; background: transparent; border: 0; pointer-events: none; }
.active-place-halo span {
  display: block;
  width: 56px;
  height: 56px;
  border: 5px solid #ffc928;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,255,255,.78), 0 0 24px rgba(255,201,40,.72);
  animation: active-place-pulse 1.85s ease-out infinite;
}
@keyframes active-place-pulse {
  0% { transform: scale(.82); opacity: 1; }
  65%, 100% { transform: scale(1.68); opacity: .24; }
}
@media (prefers-reduced-motion: reduce) {
  .active-place-halo span { animation: none; opacity: .8; }
}
.map-layout + .callout { margin-top: 1rem; }
.shifts, .shifts-extra { margin-top: 1.25rem; }

.protected-areas { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.protected-areas__head { display: grid; gap: .35rem; margin-bottom: clamp(1.25rem, 3vw, 1.8rem); }
.protected-areas__head .section__kicker { color: #a32e68; }
.protected-areas__head h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
.protected-areas__head > p:last-child { max-width: 68ch; color: var(--ink-2); font-size: .96rem; line-height: 1.55; }
.protected-area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.35rem); }
.protected-area-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  padding: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--ink);
  text-align: left;
  background: color-mix(in srgb, var(--surface) 91%, #fbd5e6);
  border: 1px solid color-mix(in srgb, #a32e68 24%, var(--line));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.protected-area-card:hover,
.protected-area-card.is-active { transform: translateY(-3px); border-color: #c3427d; background: color-mix(in srgb, var(--surface) 88%, #f06aa6); box-shadow: var(--shadow-md); }
.protected-area-card__body { display: flex; flex-direction: column; min-width: 0; }
.protected-area-card strong { font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.18; letter-spacing: -.02em; }
.protected-area-card__flamingo { position: absolute; right: .8rem; bottom: .7rem; display: grid; place-items: center; width: 2rem; height: 2rem; background: #fff; border: 2px solid #f06aa6; border-radius: 50%; box-shadow: 0 4px 10px rgba(143,40,88,.18); font-size: 1.2rem; line-height: 1; pointer-events: none; }
.protected-area-card__body > span { max-width: 36ch; margin-top: .55rem; color: var(--ink-2); font-size: .91rem; line-height: 1.5; }
.protected-area-card small { align-self: flex-start; margin-top: .8rem; padding: .4rem .6rem; color: #8f2858; background: #fff; border: 1px solid #f0bfd5; border-radius: var(--radius-pill); font-size: .76rem; font-weight: 800; }

@media (max-width: 1100px) {
  .protected-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-sidebar { max-height: 300px; }
  .map-panel { min-height: 360px; border-left: 0; border-top: 1px solid var(--line); }
  .signing-map { min-height: 360px; }
  .protected-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  .protected-area-grid { grid-template-columns: 1fr; }
  .protected-area-card { min-height: 0; }
}

@media (max-width: 620px) {
  .protected-area-grid { grid-template-columns: 1fr; }
  .protected-area-card { min-height: 0; }
}

.volunteer-hero { padding-block: clamp(3rem, 8vw, 6.5rem); background: linear-gradient(135deg, var(--deep), var(--forest)); color: #fff; }
.volunteer-hero__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.volunteer-hero .section__kicker { color: var(--moss); }
.volunteer-hero h1 { max-width: 13ch; color: #fff; font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -.045em; }
.volunteer-hero h1 + p { max-width: 50ch; margin: 1rem 0 1.5rem; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.volunteer-hero__note { padding: 1.5rem; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); box-shadow: 0 24px 50px rgba(0,0,0,.18); }
.volunteer-hero__note strong { font-size: 1.08rem; }
.volunteer-hero__note p { margin-top: .5rem; color: rgba(255,255,255,.72); }
.volunteer-cta { padding-block: clamp(3rem, 7vw, 5rem); text-align: center; background: var(--accent-soft); }
.volunteer-cta p { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.volunteer-cta h2 { max-width: 18ch; margin: .5rem auto 1.4rem; font-size: clamp(1.8rem, 4vw, 3rem); }

@media (max-width: 760px) {
  .volunteer-hero__inner { grid-template-columns: 1fr; }
}

.places-container {
  display: flex;
  flex-direction: column;
}

.places-container:not(.is-empty) .callout {
  margin-top: 1.15rem;
}

.places-container:not(.is-empty) .shifts {
  margin-top: 1.35rem;
}

@media (min-width: 768px) {
  .places-container.is-empty.has-shifts,
  .places-container.is-empty:has(.shifts:not([hidden])) {
    display: grid;
    grid-template-areas:
      "places shifts"
      "callout callout"
      "shiftsExtra shiftsExtra"
      "citiesLabel citiesLabel"
      "cities cities";
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: 1.5rem;
    row-gap: 1.15rem;
    align-items: stretch;
  }

  .places-container.is-empty.has-shifts #places,
  .places-container.is-empty:has(.shifts:not([hidden])) #places {
    grid-area: places;
    height: 100%;
  }

  .places-container.is-empty.has-shifts #shifts,
  .places-container.is-empty:has(.shifts:not([hidden])) #shifts {
    grid-area: shifts;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }

  .places-container.is-empty.has-shifts #shifts .shifts__list,
  .places-container.is-empty:has(.shifts:not([hidden])) #shifts .shifts__list {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin: 0;
    padding: 0;
  }

  .places-container.is-empty.has-shifts .callout,
  .places-container.is-empty:has(.shifts:not([hidden])) .callout {
    grid-area: callout;
    margin-top: 0;
  }

  .places-container.is-empty.has-shifts #shiftsExtra,
  .places-container.is-empty:has(.shifts:not([hidden])) #shiftsExtra {
    grid-area: shiftsExtra;
    margin-top: 0;
  }

  .places-container.is-empty.has-shifts #citiesLabel,
  .places-container.is-empty:has(.shifts:not([hidden])) #citiesLabel {
    grid-area: citiesLabel;
    margin: 0;
  }

  .places-container.is-empty.has-shifts .cities,
  .places-container.is-empty:has(.shifts:not([hidden])) .cities {
    grid-area: cities;
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .places-container.is-empty.has-shifts #places { order: 1; }
  .places-container.is-empty.has-shifts #shifts { order: 2; margin-top: 1rem; }
  .places-container.is-empty.has-shifts .callout { order: 3; margin-top: 1rem; }
  .places-container.is-empty.has-shifts #shiftsExtra { order: 4; margin-top: 1rem; }
  .places-container.is-empty.has-shifts #citiesLabel { order: 5; }
  .places-container.is-empty.has-shifts .cities { order: 6; }
}

.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  height: 100%;
}
.place {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm), inset 4px 0 var(--accent);
  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), inset 4px 0 var(--accent); }

.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__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.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__dist {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 700;
}

.places--center {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}

.city__meta {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin: .1rem 0 .2rem;
}

.places__state {
  grid-column: 1 / -1;
  margin: 0; padding: 1.25rem 0;
  color: var(--muted); font-size: .95rem; text-align: center;
}

.places__empty {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  justify-content: center;
  gap: .6rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 220px;
  box-sizing: border-box;
}
.places__empty-icon { font-size: 2rem; line-height: 1; opacity: .75; }
.places__empty-title {
  margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--ink);
}
.places__empty-text {
  margin: 0; max-width: 46ch;
  color: var(--muted); font-size: .95rem; line-height: 1.6;
}

.place__live {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .7rem;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 700;
}
.place__live::before {
  content: ""; width: .5rem; height: .5rem; border-radius: 50%;
  background: currentColor;
  animation: place-pulse 2s ease-in-out infinite;
}

.place__stale {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .7rem;
  background: var(--paper-2);
  color: var(--muted);
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
}
@keyframes place-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
@media (prefers-reduced-motion: reduce) {
  .place__live::before { animation: none; }
}

.place__actions { margin-top: auto; padding-top: 1rem; display: flex; gap: .6rem; flex-wrap: wrap; }

.toast {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--deep);
  color: #fff;
  padding: .75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.toast.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.signed-modal {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}
.signed-modal::backdrop {
  background: rgba(14, 61, 45, .58);
  backdrop-filter: blur(10px);
}
.signed-modal.is-open,
.signed-modal[open] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 80;
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 1rem;
  background: rgba(14, 61, 45, .58);
}
.signed-modal__panel {
  position: relative;
  width: min(26.5rem, 100%);
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem 1.45rem;
  padding-bottom: max(1.45rem, env(safe-area-inset-bottom));
  box-shadow: var(--shadow-lg);
  max-height: min(92dvh, 54rem);
  overflow: auto;
}
.signed-modal__close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
}
.signed-modal__close:hover { color: var(--ink); }
.signed-modal__kicker {
  margin: 0 2rem 0 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.signed-modal__title {
  margin: .35rem 2rem .45rem 0;
  font-size: 1.45rem;
  letter-spacing: -.03em;
  font-weight: 800;
  text-wrap: balance;
}
.signed-modal__lead {
  margin: 0 0 1rem;
  font-size: .95rem;
  color: var(--ink-2);
  text-wrap: pretty;
}
.signed-modal__flamingo {
  width: min(42vw, 9.5rem);
  height: auto;
  max-height: 13rem;
  object-fit: contain;
  margin: -.35rem auto -.6rem;
  filter: drop-shadow(0 14px 18px rgba(14, 61, 45, .16));
}
.signed-modal__message {
  margin: 0 auto 1rem;
  max-width: 29ch;
  color: var(--accent-ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}
.signed-modal__card {
  display: block;
  width: min(100%, 17rem);
  height: auto;
  margin: 1rem auto 0;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  background: #F8F7F3;
}
.signed-modal__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
.signed-modal__actions .btn {
  width: 100%;
  padding-inline: .6rem;
}
.signed-modal__actions .btn[disabled] {
  opacity: .65;
  pointer-events: none;
}
.signed-modal__status {
  margin: .75rem 0 0;
  min-height: 1.35em;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent-ink);
  text-wrap: pretty;
}
@media (prefers-reduced-motion: reduce) {
  .signed-modal::backdrop { backdrop-filter: none; }
}
@media print {
  .signed-modal { display: none !important; }
}

/* Shared editorial grid and page rhythm */
:is(.landing-page, .dosja-page, .dossier-content-page, .about-page, .volunteer-page, .diaspora-page, .ndihmo-page) main > section {
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  background-color: var(--section-bg, var(--paper));
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 22px 22px;
}

.landing-page .hero,
.dosja-page .page-header,
.volunteer-page .volunteer-hero,
.volunteer-page .volunteer-cta,
.landing-page .closing-film {
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
}

.landing-page .hero { color: #fff; }
.landing-page .hero__title { color: #fff; }
.landing-page .hero__title-accent { color: var(--moss); }
.landing-page .hero__tagline { color: rgba(255, 255, 255, .76); }
.landing-page .hero .btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .4);
}
.landing-page .hero .btn--ghost:hover { background: rgba(255, 255, 255, .15); }

.landing-page .signing-guide {
  --section-bg: var(--paper);
  color: var(--ink);
}
.landing-page .signing-step {
  background: rgba(255, 255, 255, .96);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.landing-page .signing-step h3 { color: var(--ink); }
.landing-page .signing-step p { color: var(--muted); }
.landing-page #numeruesi { --section-bg: var(--paper-2); }
.landing-page #nenshkruaj { --section-bg: var(--paper); }

/* Dosja reads as one compact, chaptered work. */
.dosja-page .page-header { color: #fff; }
.dosja-page .page-header__kicker { color: var(--moss); }
.dosja-page .page-header__title { color: #fff; }
.dosja-page .page-header__lead { color: rgba(255, 255, 255, .76); }
.dosja-page .dossier-intro { --section-bg: var(--paper-2); }
.dosja-page .dossier-work { --section-bg: var(--paper); }
.dossier-chapters {
  overflow: hidden;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.dossier-chapter {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.35rem, 3vw, 2.25rem);
}
.dossier-chapter + .dossier-chapter { border-top: 1px solid var(--line); }
.dossier-chapter:nth-child(even) { background: color-mix(in srgb, var(--sage-soft) 42%, transparent); }
.dossier-chapter__num {
  color: var(--accent-ink);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.dossier-chapter__label {
  margin-bottom: .3rem;
  color: var(--accent-ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dossier-chapter h3 { margin-bottom: .45rem; font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
.dossier-chapter h3 + p { max-width: 68ch; color: var(--muted); }
.dossier-chapter a { display: inline-block; margin-top: .85rem; color: var(--accent-ink); font-weight: 750; }
.dossier-chapter__links { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; }
.book-parts { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
.book-part { display: grid; grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr); gap: clamp(1rem, 4vw, 3rem); align-items: start; }
.book-part + .book-part { padding-top: clamp(2rem, 5vw, 3.5rem); border-top: 2px solid var(--ink); }
.book-part__head { position: sticky; top: 7rem; display: grid; gap: .65rem; }
.book-part__head > span { width: fit-content; padding: .35rem .7rem; color: #fff; background: var(--deep); border-radius: var(--radius-pill); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.book-part__head h3 { max-width: 14ch; font-size: clamp(1.45rem, 3vw, 2.15rem); line-height: 1.08; letter-spacing: -.035em; }
.book-part__head p { max-width: 26ch; margin-top: .45rem; color: var(--ink-2); font-size: .92rem; }
.book-part .dossier-chapters { border-top: 5px solid var(--accent); }
.dossier-chapter h4 { margin-bottom: .45rem; font-size: clamp(1.2rem, 2.4vw, 1.65rem); line-height: 1.2; letter-spacing: -.025em; }
.dosja-page .dossier-work > .wrap { max-width: 1240px; }
.dosja-page .dossier-work .section__head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.dosja-page .dossier-chapter { min-height: 300px; transition: background-color .18s var(--ease); }
.dosja-page .dossier-chapter:hover { background: color-mix(in srgb, var(--sage-soft) 58%, var(--surface)); }
.dosja-page .dossier-chapter > div { display: flex; flex-direction: column; align-items: flex-start; }
.dosja-page .dossier-chapter__primary {
  margin-top: 1rem;
  padding: .65rem 1rem;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.dosja-page .dossier-chapter__primary:hover { color: #fff; background: var(--forest); }
.dosja-page .dossier-chapter__links {
  width: 100%;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.dosja-page .dossier-chapter__links a {
  margin-top: 0;
  color: var(--ink-2);
  font-size: .78rem;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 35%, transparent);
  text-underline-offset: .2em;
}
.dosja-page .dossier-chapter__links a:hover { color: var(--accent-ink); }

/* Simple blog-post pages inside /dosja/. */
.dossier-article-page { background: var(--paper); }
.dossier-article-page .wrap--article { max-width: var(--wrap); }
.dossier-post__header { padding-block: clamp(4.5rem, 10vw, 8rem); background-color: var(--paper-2); background-image: linear-gradient(color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--ink) 4%, transparent) 1px, transparent 1px); background-size: 28px 28px; }
.dossier-post__breadcrumb { margin-bottom: 2rem; color: var(--muted); font-size: .8rem; }
.dossier-post__breadcrumb a { color: var(--accent-ink); font-weight: 800; }
.dossier-post__eyebrow { margin-bottom: .65rem; color: var(--accent-ink); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.dossier-post__header h1 { max-width: 18ch; color: var(--ink); font-size: clamp(2.5rem, 7vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.dossier-post__lead { max-width: 60ch; margin-top: 1.2rem; color: var(--ink-2); font-size: clamp(1.08rem, 2.2vw, 1.35rem); line-height: 1.6; }
.dossier-post__meta { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; }
.dossier-post__meta span { padding: .4rem .7rem; color: var(--deep); background: rgba(255,255,255,.76); border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: .72rem; font-weight: 750; }
.dossier-post__body { padding-block: clamp(3.5rem, 8vw, 7rem); color: var(--ink-2); font-size: clamp(1rem, 1.35vw, 1.08rem); line-height: 1.78; }
.dossier-article-page .dossier-post__body > * {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}
.dossier-post__body .dossier-post__intro { color: var(--ink); font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.7; }
.dossier-post__body h2 { margin-top: clamp(2.8rem, 6vw, 4.5rem); margin-bottom: .8rem; color: var(--ink); font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.15; letter-spacing: -.035em; }
.dossier-post__body p { margin-bottom: 1.15rem; }
.dossier-post__body :is(ul, ol) { margin-bottom: 1.25rem; padding-left: 1.35rem; }
.dossier-post__body ul { list-style: disc; }
.dossier-post__body ol { list-style: decimal; }
.dossier-post__body li { margin-bottom: .5rem; }
.dossier-post__body blockquote { margin-block: 2.25rem; padding: 1.25rem 1.4rem; color: var(--accent-ink); background: var(--sage-soft); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.dossier-post__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 100%; margin-top: clamp(3.5rem, 8vw, 6rem); padding-top: 1.5rem; border-top: 1px solid var(--line); }
.dossier-post__nav a { display: grid; gap: .25rem; padding: 1rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.dossier-post__nav a:last-child { text-align: right; }
.dossier-post__nav span { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dossier-post__nav a:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.dossier-reference { --section-bg: var(--paper-2); }
.dossier-reference--plain { --section-bg: var(--surface); }
.dossier-reference--green { --section-bg: var(--deep); color: #fff; }
.dosja-page main > .dossier-reference { background-color: var(--section-bg); }
.dosja-page main > .dossier-reference--green {
  --soft-grid: rgba(255, 255, 255, .045);
  background-color: var(--deep);
}
.dosja-page main > .dossier-reference--plain { background-color: var(--surface); }
.dosja-page main > .protected-areas-feature--green {
  --section-bg: var(--deep);
  --soft-grid: rgba(255, 255, 255, .045);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: #fff;
  background-color: var(--deep);
}
.dosja-page .protected-areas-feature--green .section__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.dosja-page .protected-areas-feature--green .protected-areas-map {
  margin-top: 0;
}
.dosja-page .protected-areas-feature--green .protected-areas-map__note {
  margin-top: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.dosja-page .protected-areas-feature--green .section__title { color: #fff; }
.dosja-page .protected-areas-feature--green .section__lead,
.dosja-page .protected-areas-feature--green .protected-areas-map__note {
  color: rgba(255, 255, 255, .78);
}
.dosja-page .protected-areas-feature--green .section__kicker { color: var(--accent); }
.dosja-page main > .dossier-sources {
  --section-bg: var(--paper-2);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background-color: var(--paper-2);
}
.dossier-sources__content { width: 100%; max-width: none; }
.dossier-conclusion {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.dossier-conclusion > h3,
.dossier-source-index > h3 { margin: 0 0 .65rem; font-size: clamp(1.5rem, 3vw, 2.15rem); }
.dossier-conclusion__intro { max-width: 76ch; color: var(--ink-2); }
.dossier-conclusion__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
  counter-reset: conclusion;
}
.dossier-conclusion__list li {
  position: relative;
  min-height: 170px;
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: conclusion;
}
.dossier-conclusion__list li::before {
  content: counter(conclusion);
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #fff;
  background: var(--deep);
  border-radius: 50%;
  font-weight: 850;
}
.dossier-conclusion__list strong { display: block; margin-bottom: .4rem; color: var(--ink); }
.dossier-conclusion__list p { margin: 0; color: var(--ink-2); }
.dossier-conclusion__facts { margin-block: 0 1.5rem; }
.dossier-conclusion__facts h4 { margin-bottom: .75rem; color: var(--ink); }
.dossier-conclusion__facts ul { margin: 0; }
.dossier-conclusion__closing { max-width: 88ch; margin: 0; color: var(--ink); font-weight: 650; }
.dossier-source-index { margin-block: clamp(3rem, 7vw, 5rem) 2rem; }
.dossier-source-index > p { max-width: 74ch; color: var(--ink-2); }
.dossier-source-index ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.25rem;
  padding: 0;
  list-style: none;
}
.dossier-source-index a {
  display: block;
  padding: .9rem 1rem;
  color: var(--accent-ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}
.dossier-source-index a:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.dossier-source-heading {
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}
.dossier-sources__content table { display: table; width: 100%; }
.dosja-page main > .dosja-section--green {
  --section-bg: var(--deep);
  --soft-grid: rgba(255, 255, 255, .045);
  color: #fff;
  background-color: var(--deep);
}
.dosja-page main > .dosja-section--beige {
  --section-bg: var(--paper-2);
  background-color: var(--paper-2);
}
.dosja-page main > .dosja-section--white {
  --section-bg: var(--surface);
  background-color: var(--surface);
}
.dosja-page .dosja-section--green .section__kicker { color: var(--moss); }
.dosja-page .dosja-section--green .section__title { color: #fff; }
.dosja-page .dosja-section--green .section__lead { color: rgba(255, 255, 255, .78); }
.dosja-history {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
  padding: 0;
  list-style: none;
}
.dosja-history li {
  position: relative;
  min-height: 230px;
  padding: 1.25rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.dosja-history li::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: -1.05rem;
  width: 1.1rem;
  height: 2px;
  background: rgba(255, 255, 255, .45);
}
.dosja-history li:nth-child(3n)::before,
.dosja-history li:last-child::before { display: none; }
.dosja-history li > span {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: .35rem .65rem;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.dosja-history h3 { margin-bottom: .55rem; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.15; }
.dosja-history p { color: var(--ink-2); font-size: .9rem; line-height: 1.55; }
.dosja-history .is-current { border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 20%, transparent), var(--shadow-md); }
.dosja-history .is-law {
  background: color-mix(in srgb, var(--surface) 76%, #f2bfd4);
  border-color: color-mix(in srgb, #a32e68 55%, var(--line));
  box-shadow: 0 0 0 2px color-mix(in srgb, #a32e68 14%, transparent), var(--shadow-md);
}
.dosja-history__tag {
  display: inline-flex;
  margin-bottom: .55rem;
  color: #8b2457;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .dosja-history { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dosja-history li::before { display: none; }
}
@media (max-width: 720px) {
  .dossier-conclusion__list,
  .dossier-source-index ul { grid-template-columns: 1fr; }
  .dossier-conclusion__list li { min-height: 0; }
  .dossier-sources__content table { display: block; overflow-x: auto; }
  .dosja-history { grid-template-columns: 1fr; }
  .dosja-history li { min-height: 0; }
  .dosja-history li::before { top: auto; right: auto; bottom: -1.05rem; left: 2rem; width: 2px; height: 1.1rem; }
}
.dossier-reference--green .section__title { color: #fff; }
.dossier-reference--green .section__lead { color: rgba(255, 255, 255, .78); }
.dossier-reference--green .section__kicker { color: var(--accent); }
.dossier-reference__list { display: grid; gap: 1rem; max-width: 980px; }
.dossier-reference__list li > a { display: grid; grid-template-columns: 3rem minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: clamp(1.15rem, 3vw, 1.7rem); color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease); }
.dossier-reference__list li > a:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.dossier-reference__list li > a > span { display: grid; place-items: center; width: 3rem; height: 3rem; color: #fff; background: var(--deep); border-radius: 50%; font-size: .85rem; font-weight: 850; }
.dossier-reference__list small { color: var(--accent-ink); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.dossier-reference__list h3 { margin: .2rem 0 .3rem; font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
.dossier-reference__list p { color: var(--ink-2); font-size: .9rem; }
.dosja-page .dossier-reference__list h3 { margin: 0 0 .25rem; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.dosja-page .dossier-reference__subtitle { margin-bottom: .35rem; color: var(--accent-ink); font-size: clamp(.86rem, 1.8vw, 1rem); font-weight: 750; }
.dossier-reference__list b { color: var(--accent-ink); font-size: 1.25rem; }

.dossier-conclusion__facts p { max-width: 88ch; color: var(--ink-2); line-height: 1.7; }
.dossier-conclusion__facts p + p { margin-top: .8rem; }
.referendum-timeline { margin: 1.5rem 0 2rem; }
.referendum-timeline img { display: block; width: 100%; height: auto; background: #fbf8f0; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.referendum-timeline figcaption { margin-top: .65rem; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.dossier-reference__appendix > a { border-style: dashed; }
@media (max-width: 640px) {
  .dossier-post__nav { grid-template-columns: 1fr; }
  .dossier-post__nav a:last-child { text-align: left; }
  .dossier-reference__list li > a { grid-template-columns: 2.5rem minmax(0, 1fr); }
  .dossier-reference__list li > a > span { width: 2.5rem; height: 2.5rem; }
  .dossier-reference__list b { display: none; }
}

@media (max-width: 760px) {
  .book-part { grid-template-columns: 1fr; }
  .book-part__head { position: static; }
  .book-part__head h3, .book-part__head p { max-width: none; }
}

/* Volunteer page follows the landing page's green-to-light alternation. */
.volunteer-page .volunteer-hero { background-color: var(--deep); }
.volunteer-page main > .section { --section-bg: var(--paper); }
.volunteer-page main > .section--tint { --section-bg: var(--paper-2); }
.volunteer-page .volunteer-card {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-md);
}

@media (max-width: 560px) {
  .dossier-chapter { grid-template-columns: 2.5rem minmax(0, 1fr); }
  .dossier-chapter__num { font-size: 1.25rem; }
}

.actions {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
  gap: .6rem;
}
.action {
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1.05rem;
  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: 34px; height: 34px;
  background: var(--sage-soft); color: var(--accent-ink);
  border-radius: 10px;
  font-size: .8rem; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.action__body { min-width: 0; }
.action__body h3 { font-size: .98rem; margin-bottom: .12rem; }
.action__body p { font-size: .85rem; color: var(--muted); line-height: 1.4; }
.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); }


.closing-film { padding-block: clamp(2rem, 4.5vw, 3.5rem); background: var(--deep); color: #fff; }
.closing-film__inner { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
.closing-film__copy { max-width: 760px; }
.closing-film .section__kicker { color: var(--sage); }
.closing-film h2 { color: #fff; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.04em; }
.closing-film__copy p:not(.section__kicker) { margin: 1rem 0; max-width: 38ch; color: rgba(255,255,255,.72); }
.closing-film__copy a { color: #fff; font-weight: 700; }
.closing-film__video { overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0,0,0,.3); }
.closing-film__video iframe { width: 100%; height: 100%; border: 0; display: block; }
.protest-gallery { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.protest-gallery a { overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.protest-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.protest-gallery a:hover img { transform: scale(1.035); }
.protest-gallery p { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.55); font-size: .75rem; }

.site-footer { background: #081c15; color: #fff; padding-block: clamp(3rem, 7vw, 5rem) 1.25rem; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.site-footer__about { display: grid; align-content: start; gap: 1.25rem; max-width: 520px; }
.site-footer__about > p { color: rgba(255,255,255,.64); font-size: clamp(.88rem, 1.4vw, 1rem); line-height: 1.7; }
.site-footer__identity { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.site-footer__identity img { width: 56px; height: 56px; }
.site-footer__identity span { display: grid; line-height: 1.25; }
.site-footer__identity strong { font-size: 1rem; }
.site-footer__identity small { color: rgba(255,255,255,.58); font-size: .72rem; }
.site-footer__pages { display: grid; gap: 1rem; justify-self: stretch; }
.site-footer__pages > p { color: var(--moss); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.site-footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1.25rem; }
.site-footer__nav a { padding-block: .55rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer__nav a, .site-footer__mail { color: rgba(255,255,255,.82); font-size: .86rem; font-weight: 650; text-decoration: none; }
.site-footer__nav a:hover, .site-footer__mail:hover { color: #fff; }
.site-footer__identity-copy { display: grid; gap: .75rem; }
.site-footer__details { max-width: 42ch; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.55; }
.site-footer__details strong { display: block; margin-bottom: .18rem; color: rgba(255,255,255,.9); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__contact { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(130px, .45fr) minmax(240px, 1fr) minmax(260px, 1.15fr); align-items: center; gap: 1rem 2rem; padding: clamp(1.25rem, 3vw, 2rem); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); }
.site-footer__contact > span { color: var(--moss); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.site-footer__contact .site-footer__mail { display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; color: #fff; font-size: clamp(.95rem, 2vw, 1.15rem); overflow-wrap: anywhere; }
.site-footer__contact .site-footer__mail::after { content: '→'; color: var(--moss); font-size: 1.2rem; }
.site-footer__contact p { color: rgba(255,255,255,.62); font-size: .75rem; line-height: 1.45; }
.site-footer__bottom { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.45); font-size: .75rem; }

@media (max-width: 900px) {
  .site-footer__contact { grid-template-columns: 1fr; align-items: start; gap: .65rem; }
  .site-footer__contact .site-footer__mail { font-size: 1rem; }
}

@media (max-width: 760px) {
  .closing-film__inner { grid-template-columns: 1fr; }
  .protest-gallery { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: 1fr; }
  .site-footer__contact { grid-column: auto; }
}


.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; }
}

@media (max-width: 680px) {

  .brand__text span { display: none; }

  .actions { gap: .5rem; }
  .action { padding: .75rem .85rem; gap: .7rem; }
  .action__num { width: 30px; height: 30px; border-radius: 9px; font-size: .74rem; }
  .action__body h3 { font-size: .92rem; }
  .action__body p { font-size: .8rem; }
  .action__link {
    margin-left: auto;
    width: 34px; height: 34px; padding: 0;
    justify-content: center; border-radius: 50%;
    font-size: 0;
  }
  .action__link span { font-size: 1rem; }
  .site-footer__bottom { flex-direction: column; gap: .4rem; }
}

@media (max-width: 900px) {
  .contact-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {

  .shift {
    display: grid; grid-template-columns: auto 1fr;
    gap: .2rem .85rem; align-items: center;
  }
  .shift__mark { grid-row: 1; grid-column: 1; }
  .shift__body { grid-row: 1; grid-column: 2; }
  .shift__unit { white-space: normal; }
  .shift__when {
    grid-row: 2; grid-column: 2;
    margin-left: 0; flex-direction: row; align-items: baseline;
    gap: .5rem; text-align: left;
  }

  body { font-size: 16px; }
  .counter__track { padding-top: 4.75rem; }
  .counter__marks { height: 4.75rem; }
  .counter__mark { width: 44px; min-height: 0; grid-template-columns: 1fr; justify-items: center; gap: .18rem; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .counter__mark::after { height: 1.25rem; }
  .counter__mark-icon { width: 1.7rem; height: 1.7rem; }
  .counter__mark-icon svg { width: .85rem; height: .85rem; }
  .counter__mark-copy { align-items: center; }
  .counter__mark-copy strong { padding: .12rem .3rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: .66rem; box-shadow: var(--shadow-sm); }
  .counter__mark-copy small { display: none; }
  .counter__bar { height: 52px; }
  .counter__goal { display: none; }
  .milestones { gap: .35rem; }
  .milestone { padding: .4rem .4rem; }
  .milestone__copy span { font-size: .62rem; }
  .places { grid-template-columns: 1fr; }
  .brand__text strong { font-size: .88rem; }
  .chip { font-size: .76rem; padding: .38rem .7rem; }
  .declaration__head { grid-template-columns: 1fr; gap: .85rem; }

  .origin-qualities { grid-template-columns: 1fr; gap: 0; }
  .origin-qualities > li:nth-child(2) { border-top: 1px solid var(--line-soft); }
  .origin-pledges { grid-template-columns: 1fr; }
  .origin-pledges article { padding: .95rem 1.05rem; }

  .process-steps > li { grid-template-columns: 2rem minmax(0, 1fr); }
  .process-steps__state { grid-column: 2; justify-self: start; margin-top: .15rem; }
  .process-cta { flex-direction: column; align-items: flex-start; }
  .reason-cards { grid-template-columns: 1fr; }
  .data-fields { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .brand__text { display: none; }
  .site-header__inner { gap: .75rem; }
  .brand__mark { width: 46px; height: 46px; }
}

/* About and volunteer pages: ordered sections and compact mobile layouts. */
.about-principles-section { color: #fff; background: var(--deep); }
.about-principles-section .section__kicker { color: var(--moss); }
.about-principles-section .section__title { color: #fff; }
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-principles article {
  min-height: 180px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
}
.about-principles span { display: block; margin-bottom: 1rem; color: var(--moss); font-size: .78rem; font-weight: 850; }
.about-principles h3 { color: #fff; font-size: 1.35rem; }
.about-principles p { margin-top: .45rem; color: rgba(255, 255, 255, .72); }
.organizations-section { background: var(--paper); }
.about-page .org-section,
.about-page .org-section:nth-child(even) { grid-template-columns: 220px minmax(0, 1fr); }
.about-page .org-section:nth-child(even) .org-section__media { order: 0; }
.about-page .org-section__body h3 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.about-page .org-section__desc { max-width: 68ch; }
.about-page .org-section__links a { overflow-wrap: anywhere; }
.about-page .partners__note { padding: 1rem 1.2rem; background: var(--sage-soft); border-left: 4px solid var(--accent); border-radius: var(--radius); }

.volunteer-page .volunteer-card { min-height: 220px; padding: clamp(1.25rem, 3vw, 1.7rem); align-content: start; }
.volunteer-page .volunteer-card > span { width: 2.3rem; height: 2.3rem; display: grid; place-items: center; color: #fff; background: var(--deep); border-radius: 50%; }
.volunteer-page .volunteer-card h3 { margin-top: .5rem; font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
.volunteer-page .volunteer-card strong { align-self: end; margin-top: auto; padding-top: 1rem; }

@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-header__inner { gap: .7rem; }
  .site-nav__actions { display: none; }
  .site-nav__actions .btn--ghost { display: none; }
  .brand__text > span { display: none; }
  .site-header__inner { position: relative; }
  .mobile-nav { display: block; margin-left: auto; }
  .landing-alert__inner { justify-content: flex-start; gap: .6rem; min-height: 0; padding-block: .7rem; }
  .landing-alert p { flex: 1 1 auto; font-size: .82rem; text-align: left; }
  .landing-alert a { font-size: 0; border: 0; }
  .landing-alert a span { display: grid; place-items: center; width: 2rem; height: 2rem; background: #fff7d7; border: 1px solid #e4bd38; border-radius: 50%; font-size: 1rem; }
  .mobile-nav > summary {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    list-style: none;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
  }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .mobile-nav > summary span { display: block; width: 19px; height: 2px; background: var(--deep); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
  .mobile-nav[open] > summary span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-nav[open] > summary span:nth-child(2) { opacity: 0; }
  .mobile-nav[open] > summary span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav__panel {
    position: absolute;
    z-index: 120;
    top: calc(100% + .55rem);
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 2rem));
    padding: .65rem;
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(14, 61, 45, .22);
  }
  .mobile-nav__panel a { padding: .85rem 1rem; color: var(--ink); border-radius: var(--radius); font-weight: 700; text-decoration: none; }
  .mobile-nav__panel a:hover { background: var(--sage-soft); }
  .mobile-nav__panel .mobile-nav__primary { margin-top: .35rem; color: #fff; text-align: center; background: var(--deep); }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles article { min-height: 0; }
  .about-page .org-section,
  .about-page .org-section:nth-child(even) { grid-template-columns: 1fr; gap: 1rem; }
  .about-page .org-section__media { width: 100%; max-width: none; min-height: 108px; padding: 1.1rem; }
  .about-page .org-section__links { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .volunteer-page .volunteer-hero h1 { max-width: none; font-size: clamp(2.15rem, 11vw, 3.5rem); }
  .material-card__body--action { text-align: center; }
  .material-card__body--action .btn { width: 100%; }
}

@media (max-width: 430px) {
  .site-nav__actions .btn { padding: .5rem .8rem; font-size: .8rem; }
  .volunteer-page .volunteer-hero__note { padding: 1.1rem; }
  .volunteer-page .volunteer-card { min-height: 0; }
}

.landing-page .closing-film {
  background-color: var(--deep);
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Light heroes, with green reserved for alternating content bands. */
.page-header,
.landing-page .hero,
.dosja-page .page-header,
.volunteer-page .volunteer-hero {
  --section-bg: var(--paper);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 22px 22px;
}
.landing-page .hero__title,
.dosja-page .page-header__title,
.volunteer-page .volunteer-hero h1 { color: var(--ink); }
.landing-page .hero__title-accent { color: var(--accent-ink); }
.landing-page .hero__tagline,
.dosja-page .page-header__lead,
.volunteer-page .volunteer-hero h1 + p { color: var(--ink-2); }
.dosja-page .page-header__kicker,
.volunteer-page .volunteer-hero .section__kicker { color: var(--accent-ink); }
.landing-page .hero .btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border-color: var(--line);
}
.landing-page .hero .btn--ghost:hover { background: var(--surface); }
.volunteer-page .volunteer-hero__note {
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.volunteer-page .volunteer-hero__note p { color: var(--ink-2); }

.landing-page .signing-guide,
.dosja-page .dossier-intro,
.volunteer-page .volunteer-hero + .section {
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
  color: #fff;
  background-color: var(--deep);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 22px 22px;
}
.landing-page .signing-step {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.landing-page .signing-step h3 { color: #fff; }
.landing-page .signing-step p { color: rgba(255, 255, 255, .76); }
.dosja-page .dossier-intro .section__kicker,
.volunteer-page .volunteer-hero + .section .section__kicker { color: var(--moss); }
.dosja-page .dossier-intro .section__title,
.volunteer-page .volunteer-hero + .section .section__title { color: #fff; }
.dosja-page .dossier-intro .keybox { background: rgba(255, 255, 255, .96); }

/* Dosja chapters are linear reading pages: no hidden or collapsible content. */
.initiative-resources { gap: clamp(2.5rem, 7vw, 5rem); }
.initiative-resources > .session-item {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.plain-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .8rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}
.plain-section__head .session-index {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
}
.plain-section__head .session-summary-text h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  letter-spacing: -.025em;
}
.initiative-resources > .session-item > .declaration__panel { margin-top: 0; }
.declaration--faq .session-list { gap: 1rem; }
.declaration--faq .session-item { overflow: visible; border-radius: var(--radius); }
.declaration--faq .session-item > .plain-section__head {
  margin: 0;
  padding: 1rem 1.1rem .85rem;
  background: var(--paper-2);
}
.declaration--faq .session-item > .plain-section__head .session-index {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
}
.declaration--faq .session-item > .plain-section__head .session-summary-text h3 { font-size: 1rem; }
.declaration--faq .session-body { padding: .9rem 1.1rem 1.1rem; }

/* Stronger green hierarchy in the light landing hero. */
.landing-page .hero__glow {
  opacity: 1;
  background:
    radial-gradient(48% 68% at 20% 35%, color-mix(in srgb, var(--forest) 26%, transparent), transparent 72%),
    radial-gradient(42% 58% at 78% 15%, color-mix(in srgb, var(--sage) 38%, transparent), transparent 70%);
}
.landing-page .hero__title-accent {
  width: fit-content;
  margin-top: .18em;
  padding: .03em .22em .08em;
  color: #fff;
  background: var(--deep);
  border-radius: .12em;
  box-shadow: .12em .12em 0 var(--moss);
}
.landing-page .hero .btn--primary {
  --btn-bg: var(--deep);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--deep) 32%, transparent);
}
.landing-page .hero__tagline { border-left: 4px solid var(--accent); padding-left: 1rem; }
.landing-page .hero-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  max-width: 1120px;
}
.hero-vote { margin: 0; }
.hero-vote svg { display: block; width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 24px 30px rgba(14, 61, 45, .14)); }
.hero-vote__shadow { fill: color-mix(in srgb, var(--sage) 45%, transparent); }
.hero-vote__paper { fill: rgba(255, 255, 255, .96); stroke: var(--deep); stroke-width: 4; }
.hero-vote__line { fill: none; stroke: color-mix(in srgb, var(--deep) 38%, transparent); stroke-width: 12; stroke-linecap: round; }
.hero-vote__box { fill: #fff; stroke: color-mix(in srgb, var(--deep) 42%, transparent); stroke-width: 5; }
.hero-vote__box--active { fill: var(--sage-soft); stroke: var(--accent); }
.hero-vote__tick { fill: none; stroke: var(--accent); stroke-width: 18; stroke-linecap: round; stroke-linejoin: round; }
.landing-page .signing-steps { gap: clamp(.7rem, 1.5vw, 1rem); }
.landing-page .signing-step {
  min-height: 0;
  padding: clamp(.95rem, 2vw, 1.35rem);
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 1rem;
  align-content: start;
  transition: transform .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease);
}
.landing-page .signing-step:is(:hover, :focus-visible) {
  transform: translateY(-5px);
  color: var(--ink);
  background: var(--surface);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 3px;
}
.landing-page .signing-step:is(:hover, :focus-visible) h3 { color: var(--ink); }
.landing-page .signing-step:is(:hover, :focus-visible) p { color: var(--muted); }
.landing-page .signing-step__number { width: 2.6rem; height: 2.6rem; color: #fff; background: var(--deep); font-size: .85rem; box-shadow: 0 6px 16px rgba(0, 0, 0, .18); }
.landing-page .signing-step h3 { font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.2; margin-bottom: .25rem; }
.landing-page .signing-step p { font-size: .92rem; line-height: 1.45; }

/* Full-width interactive map with an in-map legend. */
.map-layout { display: block; min-height: 640px; margin-top: clamp(2rem, 5vw, 3.5rem); }
.map-panel { position: relative; min-height: 640px; border: 0; }
.signing-map { min-height: 640px; }
.map-legend {
  position: absolute;
  z-index: 500;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: .65rem .8rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.signing-locations,
.protected-areas,
#nenshkruaj .shifts { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.map-city-list,
#nenshkruaj .shifts__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}
.map-city-list > li,
#nenshkruaj .shifts__list > li { min-width: 0; }
.map-city {
  height: 100%;
  min-height: 220px;
  align-content: start;
  gap: .4rem;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  border-color: color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: var(--radius-lg);
}
.map-city__name { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.15; letter-spacing: -.02em; }
.map-city__address { max-width: 32ch; margin-top: .35rem; color: var(--ink-2); font-size: .92rem; line-height: 1.55; }
.map-city__date { justify-self: start; margin-top: auto; padding: .45rem .65rem; color: var(--accent-ink); background: var(--sage-soft); border-radius: 9px; font-size: .84rem; line-height: 1.35; }
.map-city__status { margin-top: .25rem; line-height: 1.4; }
.map-city__directions { margin-top: .75rem; padding: .58rem .9rem; }
.map-city:hover,
.map-city.is-active { transform: translateY(-3px); }
.map-city-empty { grid-column: 1 / -1; min-height: 0; padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

#nenshkruaj .shifts { display: block; height: auto; }
#nenshkruaj .shifts[hidden] { display: none !important; }
#nenshkruaj .shift {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-height: 150px;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
#nenshkruaj .shift__mark { width: 13px; height: 13px; margin-bottom: .35rem; background: var(--accent); border: 2px solid var(--deep); border-radius: 50%; }
#nenshkruaj .shift__body { display: flex; flex-direction: column; gap: .15rem; }
#nenshkruaj .shift__unit { color: var(--ink); font-weight: 750; line-height: 1.25; }
#nenshkruaj .shift__city { color: var(--ink-2); font-size: .82rem; }
#nenshkruaj .shift__when { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: auto; padding-top: .7rem; color: var(--accent-ink); font-size: .8rem; font-weight: 750; }

@media (max-width: 1100px) {
  .map-city-list,
  #nenshkruaj .shifts__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .landing-page .hero-inner { grid-template-columns: 1fr; }
  .hero-vote { width: min(420px, 88%); margin-inline: auto; }
  .map-layout, .map-panel, .signing-map { min-height: 500px; }
  .map-city-list,
  #nenshkruaj .shifts__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  .map-layout, .map-panel, .signing-map { min-height: 440px; }
  .map-legend { right: .75rem; bottom: .75rem; left: .75rem; justify-content: center; }
  .map-city-list,
  #nenshkruaj .shifts__list { grid-template-columns: 1fr; }
  .map-city, #nenshkruaj .shift { min-height: 0; }
}

@media (max-width: 620px) {
  .map-city-list { grid-template-columns: 1fr; }
  .map-city { min-height: 0; }
}

/* One hero and grid system across every public content page. */
:is(.landing-page, .dosja-page, .dossier-content-page, .about-page, .volunteer-page, .diaspora-page, .ndihmo-page) main > section {
  background-image:
    linear-gradient(var(--grid-line, color-mix(in srgb, var(--ink) 5%, transparent)) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line, color-mix(in srgb, var(--ink) 5%, transparent)) 1px, transparent 1px);
  background-size: 22px 22px;
}
.landing-page .hero,
.page-header,
.volunteer-page .volunteer-hero {
  display: flex;
  align-items: center;
  min-height: clamp(430px, 62vh, 650px);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.page-header__title,
.volunteer-page .volunteer-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.page-header__lead { max-width: 65ch; margin-top: 1rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }

/* The same soft green signature carried through every page hero. */
.page-header,
.volunteer-page .volunteer-hero { position: relative; isolation: isolate; overflow: hidden; }
.page-header::after,
.volunteer-page .volunteer-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(280px, 42vw, 620px);
  aspect-ratio: 1;
  right: clamp(-210px, -12vw, -80px);
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  background: radial-gradient(circle at 35% 35%, var(--sage), color-mix(in srgb, var(--accent) 62%, transparent) 52%, transparent 70%);
  border-radius: 42% 58% 64% 36% / 48% 36% 64% 52%;
  opacity: .58;
}
.page-header > .wrap,
.volunteer-page .volunteer-hero > .wrap { position: relative; z-index: 1; }

.about-principles-section {
  background-color: var(--deep);
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 22px 22px;
}

.volunteer-page .volunteer-card { color: var(--ink); background: rgba(255, 255, 255, .97); border-color: rgba(255, 255, 255, .4); }
.volunteer-page .volunteer-card p { color: var(--ink-2); }
.volunteer-page .volunteer-card strong { color: var(--accent-ink); }

.volunteer-page .volunteer-cta h2 { color: #fff; }
.volunteer-page .volunteer-cta { text-align: left; }
.volunteer-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.volunteer-cta__content h2 { max-width: 16ch; margin: .55rem 0 1rem; }
.volunteer-cta__lead { max-width: 52ch; margin-bottom: 1.6rem; color: rgba(255,255,255,.74); font-size: 1.02rem; line-height: 1.65; }
.volunteer-cta__media { position: relative; margin: 0; }
.volunteer-cta__media::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 2px solid var(--sage); border-radius: var(--radius-lg); }
.volunteer-cta__media img { position: relative; display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 24px 50px rgba(0,0,0,.24); }

.volunteer-resources-section .section__head { margin-bottom: clamp(1.5rem, 3vw, 2rem); }

/* Materiale për vullnetarët: tri karta identike — titull, përshkrim, përmbajtje. */
.materials-list { display: grid; gap: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.material-card { padding: clamp(1.25rem, 3vw, 1.75rem); }
.material-card__head { margin-bottom: 1.1rem; }
.material-card__head h3 { color: var(--ink); font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: .35rem; }
.material-card__head p { max-width: 65ch; color: var(--ink-2); font-size: .92rem; line-height: 1.55; }
.material-card__body--action { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.material-card__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 3rem; height: 3rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 1.5rem;
}
.material-card__body--media { display: grid; gap: .75rem; justify-items: start; }
.material-card__frame { position: relative; width: 100%; max-width: 560px; aspect-ratio: 16 / 9; overflow: hidden; background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.material-card__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.material-card__link { color: var(--accent-ink); font-size: .85rem; font-weight: 800; text-decoration: none; }
.material-card__link:hover { text-decoration: underline; }
.callout a { color: var(--accent-ink); font-weight: 800; }

.about-page .mission-origin {
  --section-bg: var(--paper-2);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  background-color: var(--paper-2);
}
.about-page .organizations-section {
  --section-bg: var(--surface);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  background-color: var(--surface);
}
.about-page .page-header {
  --section-bg: var(--paper);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  background-color: var(--paper);
}
.about-page .about-principles-section {
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
  color: #fff;
  background-color: var(--deep);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
}
.about-page .org-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-page .org-section,
.about-page .org-section:nth-child(even) {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  min-height: 250px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-page .org-section + .org-section { border-top: 1px solid var(--line); }
.about-page .org-section__media {
  width: 100%;
  min-height: 105px;
  padding: .8rem;
  background: var(--paper-2);
  box-shadow: none;
}
.about-page .org-section__media img { max-height: 72px; }
.about-page .org-section__body { min-width: 0; }
.about-page .org-section__body h3 { color: var(--ink); }
.about-page .org-section__full { color: var(--muted); }
.about-page .org-section__desc { color: var(--ink-2); }
.about-page .partners__note {
  margin-top: 1rem;
  color: #fff;
  background: var(--deep);
  border: 0;
  box-shadow: var(--shadow-md);
}
.about-page .partners__note a { color: var(--moss); font-weight: 800; }

/* Rreth misionit: ritëm më i ngjeshur dhe seksione të bashkuara. */
.about-page .page-header {
  min-height: clamp(300px, 42vh, 430px);
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.about-page main > .section { padding-block: clamp(2rem, 4vw, 3.25rem); }
.about-page .section__head { margin-bottom: clamp(.75rem, 1.6vw, 1.15rem); }
.about-page .about-principles { gap: .8rem; }
.about-page .about-principles article { min-height: 0; padding: clamp(1rem, 2vw, 1.35rem); }
.about-page .about-principles span { margin-bottom: .55rem; }
.about-page .origin-pledges { gap: .85rem; }
.about-page .org-section,
.about-page .org-section:nth-child(even) { min-height: 0; }
.about-press-section {
  --section-bg: var(--paper-2);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  background-color: var(--paper-2);
}
.about-press-section .release-list { max-width: none; }
.about-press-section .release { padding: clamp(1.1rem, 2.7vw, 1.65rem); }
.faq-video-section { background: var(--paper-2); }
.faq-video-section .video-grid { max-width: 820px; }

@media (max-width: 720px) {
  .about-page .page-header { min-height: 0; padding-block: 2.5rem; }
  .about-page main > .section { padding-block: 1.75rem; }
}

.contact-cta {
  --section-bg: var(--sage-soft);
  --grid-line: color-mix(in srgb, var(--deep) 8%, transparent);
  display: flex;
  align-items: center;
  min-height: clamp(560px, 72vh, 760px);
  padding-block: clamp(4rem, 9vw, 7rem);
  color: var(--ink);
  text-align: center;
  background-color: var(--sage-soft);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 22px 22px;
}
.contact-cta__inner { display: grid; justify-items: center; }
.contact-cta__inner > p:first-child { color: var(--accent-ink); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-cta h2 { margin: .45rem 0 .8rem; color: var(--deep); font-size: clamp(3rem, 9vw, 7rem); line-height: .92; letter-spacing: -.065em; }
.contact-cta__intro { max-width: 56ch; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }
.contact-topics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  width: 100%;
  margin: clamp(1.5rem, 4vw, 2.4rem) 0 1.4rem;
  text-align: left;
}
.contact-topics li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: .75rem;
  min-height: 150px;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--deep) 14%, var(--line));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-topics li > span { display: grid; place-items: center; width: 2rem; height: 2rem; color: #fff; background: var(--deep); border-radius: 50%; font-size: .7rem; font-weight: 850; }
.contact-topics li div { display: flex; flex-direction: column; }
.contact-topics strong { color: var(--ink); font-size: 1rem; }
.contact-topics small { margin-top: .4rem; color: var(--ink-2); font-size: .82rem; line-height: 1.45; }
.contact-cta a {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  max-width: 100%;
  padding: .9rem 1.35rem;
  color: #fff;
  background: var(--deep);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.contact-cta a:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-cta a span { font-size: 1.25em; }

@media (max-width: 760px) {
  .landing-page .hero,
  .page-header,
  .volunteer-page .volunteer-hero {
    min-height: auto;
    padding-block: clamp(3.25rem, 13vw, 5rem);
  }
  .page-header__title,
  .volunteer-page .volunteer-hero h1 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .volunteer-cta__inner { grid-template-columns: 1fr; }
  .volunteer-cta__media { margin-top: .75rem; }
  .about-page .org-sections { grid-template-columns: 1fr; }
  .about-page .org-section,
  .about-page .org-section:nth-child(even) { grid-template-columns: 105px minmax(0, 1fr); min-height: 0; }
  .about-page .org-section__media { min-height: 92px; }
  #nenshkruaj .section__head { margin-bottom: 2rem; }
  #nenshkruaj .signing-locations { margin-top: 0; }
  #nenshkruaj .map-city-list { gap: 1rem; }
  #nenshkruaj .map-layout { margin-top: 1.75rem; }
  #nenshkruaj .protected-areas { margin-top: 2.75rem; }
  #nenshkruaj .protected-area-grid { gap: 1rem; }
  #nenshkruaj .callout { margin-top: 2rem; }
}

@media (max-width: 520px) {
  .about-page .org-section,
  .about-page .org-section:nth-child(even) { grid-template-columns: 1fr; padding: 1rem; }
  .about-page .org-section__media { min-height: 96px; }
  .contact-cta { min-height: 0; }
  .contact-cta h2 { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .contact-cta a { width: 100%; justify-content: center; padding-inline: .8rem; font-size: .9rem; }
  .contact-topics { grid-template-columns: 1fr; }
  .contact-topics li { min-height: 0; }
}

/* 2026-08 information architecture refresh: a very quiet grid keeps the
   editorial rhythm without competing with text or maps. */
main > section:not(.contact-cta) {
  --soft-grid: color-mix(in srgb, var(--ink) 3.5%, transparent);
  background-image:
    linear-gradient(var(--soft-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft-grid) 1px, transparent 1px) !important;
  background-size: 28px 28px !important;
}
.landing-page main > .section > .wrap > .section__head {
  max-width: 900px;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.landing-page main > .section:not(.contact-cta) { padding-block: clamp(3.5rem, 7vw, 6rem); }
.landing-page main > .section .section__title,
.volunteer-page main > .section .section__title { font-size: clamp(2.15rem, 5vw, 3.65rem); line-height: 1.04; letter-spacing: -.04em; text-wrap: balance; }
.section__title-line { display: block; }
.landing-page .section__body { width: 100%; }
.landing-page .section__body--reading { max-width: 960px; }
.landing-page .counter__footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem 1.5rem; margin-top: .75rem; }
.landing-page .counter__footer .counter__note { margin-top: 0; }
.landing-page .counter__footer .counter__updated { flex: 0 0 auto; justify-self: end; }
.landing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.landing-card--informational { cursor: default; }
.landing-card--interactive {
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.landing-card--interactive:hover,
.landing-card--interactive:focus-within {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  box-shadow: var(--shadow-md);
}
.landing-page .signing-guide .section__kicker,
.landing-page .closing-film .section__kicker { color: var(--moss); }
.landing-page .signing-guide .section__title,
.landing-page .closing-film .section__title { color: #fff; }
.landing-page .signing-guide .section__lead,
.landing-page .closing-film .section__lead { margin: 0; max-width: 60ch; color: rgba(255, 255, 255, .74); }
.landing-page #nenshkruaj .signing-layout {
  display: block;
}
.signing-layout__content { display: grid; gap: 0; min-width: 0; }

/* ─── Turnet e nënshkrimit: lista dinamike që vjen nga portali (pa hartë) ─── */
.landing-page #nenshkruaj .signing-shifts { margin-top: 0; }
.landing-page #nenshkruaj .signing-shifts__status {
  margin: 0 0 1.1rem;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 700;
}
.landing-page #nenshkruaj .shift-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.landing-page #nenshkruaj .shift-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.landing-page #nenshkruaj .shift-card__when {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem .7rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.landing-page #nenshkruaj .shift-card__day {
  color: var(--ink);
  font-size: .96rem;
  font-weight: 850;
  letter-spacing: -.01em;
  text-transform: capitalize;
}
.landing-page #nenshkruaj .shift-card__time {
  padding: .12rem .6rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.landing-page #nenshkruaj .shift-card__where { display: grid; gap: .3rem; }
.landing-page #nenshkruaj .shift-card__place {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.landing-page #nenshkruaj .shift-card__unit {
  margin: 0;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 600;
}
.landing-page #nenshkruaj .shift-card__spot {
  margin: .1rem 0 0;
  color: var(--ink-2);
  font-size: .9rem;
  line-height: 1.5;
}
.landing-page #nenshkruaj > .wrap > .section__head { margin-bottom: clamp(1rem, 2vw, 1.35rem); }
.landing-page #nenshkruaj .signing-locations { margin-top: 0; }
.landing-page #nenshkruaj .map-city { display: flex; flex-direction: column; min-height: 190px; padding: 0; overflow: hidden; cursor: default; }
.landing-page #nenshkruaj .map-city__focus { display: grid; align-content: start; gap: .35rem; width: 100%; flex: 1; margin: 0; padding: 1.15rem 1.15rem .8rem; color: var(--ink); text-align: left; background: transparent; border: 0; border-radius: 0; font: inherit; cursor: pointer; }
.landing-page #nenshkruaj .map-city__focus:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent); outline-offset: -3px; }
.landing-page #nenshkruaj .map-city--active-location {
  position: relative;
  border-color: #e4b83f;
  border-width: 2px;
  background: #ffefc2;
  box-shadow: 0 14px 30px rgba(121, 91, 0, .18), 0 0 0 4px rgba(228, 184, 63, .3);
}
.landing-page #nenshkruaj .map-city--active-location::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #e4b83f, #f5d36b);
}
.landing-page #nenshkruaj .map-city--active-location .map-city__focus {
  background: linear-gradient(180deg, color-mix(in srgb, #ffe9a8 70%, #fff), #fff6dd);
}
.landing-page #nenshkruaj .map-city__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: fit-content;
  margin: 0 1.15rem 1.15rem;
  padding: .68rem 1rem;
  color: #fff;
  background: var(--deep);
  border: 1px solid var(--deep);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px rgba(14, 61, 45, .18);
  font-size: .8rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease);
}
.landing-page #nenshkruaj .map-city__directions:hover {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(14, 61, 45, .25);
  text-decoration: none;
  transform: translateY(-2px);
}
.landing-page #nenshkruaj .map-city__directions:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
  outline-offset: 3px;
}
.landing-page #nenshkruaj .map-layout {
  height: clamp(520px, 58vw, 620px);
  min-height: 0;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 20px;
  box-shadow: 0 18px 44px -24px color-mix(in srgb, var(--deep) 45%, transparent);
}
.landing-page #nenshkruaj .map-panel,
.landing-page #nenshkruaj .signing-map { width: 100%; height: 100%; min-height: 0; }
.landing-page #nenshkruaj .map-legend {
  right: auto;
  bottom: 1rem;
  left: 1rem;
  padding: .55rem .75rem;
  background: color-mix(in srgb, #fff 92%, transparent);
  border-color: rgba(14, 61, 45, .16);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(14, 61, 45, .14);
  font-size: .76rem;
}
.landing-page #nenshkruaj .leaflet-control-attribution { padding: 2px 6px; background: rgba(255, 255, 255, .86); font-size: 9px; }
.landing-page #nenshkruaj .leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: 0 12px 32px rgba(14, 61, 45, .2); }
.landing-page #nenshkruaj .leaflet-popup-content { min-width: 180px; margin: 1rem 1.1rem; font-size: .84rem; }
.landing-page #nenshkruaj .signing-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 2rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.25rem);
  background: var(--deep);
  border-color: transparent;
}
.landing-page #nenshkruaj .signing-cta__copy { max-width: 46ch; }
.landing-page #nenshkruaj .signing-cta__kicker { margin: 0 0 .3rem; color: var(--moss); font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.landing-page #nenshkruaj .signing-cta__copy h3 { color: #fff; font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -.02em; }
.landing-page #nenshkruaj .signing-cta__copy p { margin-top: .4rem; color: rgba(255, 255, 255, .78); font-size: .92rem; line-height: 1.6; }
.landing-page #nenshkruaj .signing-cta__actions { display: flex; flex-wrap: wrap; flex-shrink: 0; gap: .75rem; }
.landing-page #nenshkruaj .signing-cta .btn--ghost { --btn-bg: rgba(255, 255, 255, .12); --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .35); }
.landing-page #nenshkruaj .signing-cta .btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .2); }
/* Landing-page sequence: green, beige, white, green, beige, white.
   Contact keeps the shared site-wide component without landing overrides. */
.landing-page #nenshkruaj,
.landing-page .landing-faq {
  --section-bg: var(--paper);
  background-color: var(--paper);
}
.landing-page #numeruesi,
.landing-page .closing-film {
  --section-bg: var(--paper-2);
  background-color: var(--paper-2);
}
.landing-page .signing-guide,
.landing-page .referendum-road {
  --section-bg: var(--deep);
  --soft-grid: rgba(255, 255, 255, .035);
  color: #fff;
  background-color: var(--deep);
}
.landing-page .signing-guide .section__kicker,
.landing-page .referendum-road .section__kicker { color: var(--moss); }
.landing-page .signing-guide .section__title,
.landing-page .referendum-road .section__title { color: #fff; }
.landing-page .signing-guide .section__lead,
.landing-page .referendum-road .section__lead { color: rgba(255, 255, 255, .76); }
.landing-page #numeruesi .section__kicker,
.landing-page .closing-film .section__kicker { color: var(--accent-ink); }
.landing-page #numeruesi .section__title,
.landing-page .closing-film .section__title { color: var(--ink); }
.landing-page #numeruesi .section__lead,
.landing-page .closing-film .section__lead { color: var(--ink-2); }
.landing-page .closing-film .protest-gallery p { color: var(--muted); }
.landing-page .closing-film .protest-gallery a { border-color: var(--line); background: var(--surface); }
.landing-page .signing-step {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.landing-page .signing-step h3 { color: #fff; }
.landing-page .signing-step p { color: rgba(255, 255, 255, .76); }
.identity-notice { margin: 1rem 0 1.5rem; }
.map-city__toggle { align-self: flex-start; margin-top: auto; color: var(--accent-ink); font-size: .8rem; font-weight: 800; }
.protected-static-map { display: grid; grid-template-columns: minmax(260px, 440px) 1fr; gap: clamp(1.2rem, 4vw, 3rem); align-items: center; margin: 0 0 2rem; padding: clamp(1rem, 3vw, 2rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.protected-static-map img { width: 100%; height: auto; border-radius: var(--radius); }
.protected-static-map figcaption { color: var(--ink-2); font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.65; }
.protected-area-card { cursor: default; }
.protected-areas-map { width: 100%; height: clamp(440px, 62vw, 680px); margin-top: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.protected-areas-map__note { margin: .65rem 0 1.5rem; color: var(--muted); font-size: .82rem; }
.protected-areas-feature .protected-area-card { cursor: pointer; }
.mission-origin__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; color: var(--ink-2); }
.process-steps--landing { width: 100%; max-width: none; padding: clamp(1rem, 3vw, 2rem); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.faq-card { align-self: start; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.faq-card summary { position: relative; padding: 1rem 3rem 1rem 1.15rem; color: var(--ink); cursor: pointer; list-style: none; font-weight: 750; line-height: 1.35; }
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after { content: "+"; position: absolute; top: .72rem; right: 1rem; color: var(--accent-ink); font-size: 1.45rem; font-weight: 500; }
.faq-card[open] summary::after { content: "−"; }
.faq-card[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq-card p { margin: 0; padding: 1rem 1.15rem 1.15rem; color: var(--ink-2); font-size: .93rem; line-height: 1.6; }
.faq-more { margin-top: 1.25rem; }
.faq-more a { color: var(--accent-ink); font-weight: 800; text-decoration: none; }
.faq-more a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .protected-static-map, .mission-origin__intro, .faq-grid { grid-template-columns: 1fr; }
  .landing-page #nenshkruaj .map-city-list { grid-template-columns: 1fr; }
  .landing-page #nenshkruaj .shift-list { grid-template-columns: 1fr; }
  .landing-page #nenshkruaj .map-city { min-height: 0; }
  .landing-page #nenshkruaj .map-layout { height: 400px; }
  .landing-page #nenshkruaj .signing-cta { flex-direction: column; align-items: stretch; }
  .landing-page #nenshkruaj .signing-cta__actions { flex-direction: column; }
  .landing-page #nenshkruaj .signing-cta .btn { width: 100%; }
  .landing-page .counter__footer { align-items: flex-start; flex-direction: column; }
  .landing-page .counter__footer .counter__updated { align-self: flex-end; }
  .landing-page main > .section:not(.contact-cta) { padding-block: clamp(3rem, 11vw, 4.5rem); }
}
@media (min-width: 721px) and (max-width: 1000px) {
  .landing-page #nenshkruaj .map-city-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .landing-page #nenshkruaj .shift-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── Vullnetarët: rotacioni bardhë → gjelbër → bezhë.
   Hero bardhë → "Si mund të ndihmosh" gjelbër (rolet + procesi, bashkuar) →
   diaspora bezhë → materiale bardhë → thirrja finale gjelbër. ── */

/* 1 · Hero — bardhë (trashëgon .volunteer-page .volunteer-hero, i çelët si
   page-header-at e tjera). Nuk duhet mbivendosje këtu. */

/* 2 · "Si mund të ndihmosh" — gjelbër, me dy nënseksione. */
.volunteer-page main > .volunteer-help-section {
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
  color: #fff;
  background-color: var(--deep);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 22px 22px;
}
.volunteer-page main > .volunteer-help-section .section__kicker { color: var(--moss); }
.volunteer-page main > .volunteer-help-section .section__title { color: #fff; }
.volunteer-page main > .volunteer-help-section .section__lead { color: rgba(255, 255, 255, .8); }

.volunteer-subsection + .volunteer-subsection { margin-top: clamp(2.75rem, 6vw, 4.25rem); }
.volunteer-subsection__title {
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -.015em;
}
.volunteer-subsection__title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: .55rem;
  background: var(--accent);
  border-radius: 2px;
}

/* 3 · Diaspora — bezhë. */
.volunteer-page main > .volunteer-diaspora-section {
  --section-bg: var(--paper-2);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
}

/* 4 · Materiale — bardhë. */
.volunteer-page main > .volunteer-resources-section {
  --section-bg: var(--surface);
  --grid-line: color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--ink);
}
.volunteer-page main > .volunteer-resources-section .section__kicker { color: var(--accent-ink); }
.volunteer-page main > .volunteer-resources-section .section__title { color: var(--ink); }
.volunteer-page main > .volunteer-resources-section .section__lead { color: var(--ink-2); }

/* 5 · Thirrja finale — gjelbër. */
.volunteer-page main > .volunteer-cta {
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
  color: #fff;
}
.volunteer-page .volunteer-cta__content h2 { color: #fff; max-width: 12ch; font-size: clamp(2.15rem, 5vw, 3.65rem); line-height: 1.04; letter-spacing: -.04em; }
.volunteer-page .volunteer-cta__lead { color: rgba(255, 255, 255, .74); }

.volunteer-page .volunteer-diaspora-section .volunteer-card { border-color: var(--line); }
.volunteer-page .diaspora-cta {
  display: grid;
  justify-items: start;
  gap: .7rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.volunteer-page .diaspora-cta p { margin: 0; max-width: 52ch; color: var(--ink-2); font-size: .92rem; }

/* Vullnetarët: one continuous, easy-to-scan participation journey. */
.volunteer-page main > section { padding-block: clamp(4rem, 8vw, 7rem); }
.volunteer-page main > section > .wrap > .section__head {
  max-width: 850px;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.volunteer-page .section__lead { max-width: 62ch; }
.volunteer-page :is(#rolet, #procesi, #diaspora, #materiale) { scroll-margin-top: 5.5rem; }
.volunteer-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
}
.volunteer-hero__links a {
  padding: .55rem .85rem;
  color: var(--ink-2);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}
.volunteer-hero__links a:hover { color: var(--deep); background: #fff; border-color: var(--accent); }
.volunteer-page .volunteer-actions { gap: clamp(1rem, 2vw, 1.4rem); }
.volunteer-page .volunteer-card {
  min-height: 260px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.volunteer-page .volunteer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.volunteer-page .diaspora-grid .volunteer-card { min-height: 250px; }
.volunteer-page .materials-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.volunteer-page .material-card { display: flex; flex-direction: column; min-width: 0; }
.volunteer-page .material-card__head { display: grid; align-content: start; gap: .4rem; min-height: 170px; margin-bottom: 1rem; }
.volunteer-page .material-card__head h3 { margin: 0; }
.volunteer-page .material-card__type { width: fit-content; color: var(--accent-ink); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.volunteer-page .material-card__body { display: grid; gap: 1rem; margin-top: auto; }
.volunteer-page .material-card__frame { aspect-ratio: 16 / 10; }
.volunteer-page .material-card__preview { width: 100%; aspect-ratio: 16 / 10; }
.volunteer-page .material-card__preview--document { display: grid; place-content: center; justify-items: center; gap: .65rem; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.volunteer-page .material-card__preview--document .material-card__icon { width: 4.25rem; height: 4.25rem; color: #fff; background: var(--deep); border-radius: 50%; font-size: .85rem; font-weight: 900; letter-spacing: .05em; }
.volunteer-page .material-card__preview--document small { font-size: .78rem; font-weight: 750; }
.volunteer-page .material-card__button { justify-content: center; width: 100%; min-height: 46px; }

.volunteer-page .volunteer-cta { padding-block: clamp(4rem, 8vw, 7rem); }

@media (min-width: 721px) {
  .diaspora-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
  .volunteer-page .materials-list { grid-template-columns: 1fr; }
  .volunteer-page .material-card__frame { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .volunteer-page main > section { padding-block: clamp(3rem, 12vw, 4.5rem); }
  .volunteer-hero__links { display: grid; grid-template-columns: 1fr 1fr; }
  .volunteer-hero__links a { text-align: center; }
  .volunteer-page .volunteer-card,
  .volunteer-page .diaspora-grid .volunteer-card { min-height: 0; }
}

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

/* ─────────────────────────  FAQJA DIASPORA (/diaspora)  ─────────────────────────
   Dy mënyra regjistrimi (protestë / individualisht), secila me formular, plus
   paketa me 3 dokumente. E dhëna NUK ruhet këtu (Zero-PII); dërgimi i palidhur. */

.diaspora-hero {
  /* The shared `main > section` rule paints background-color from --section-bg
     (higher specificity than a plain `background`), so tint via the variable —
     same mechanism the volunteer hero uses. */
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
  padding-block: clamp(2.4rem, 6vw, 4.2rem);
}
.diaspora-hero__inner { max-width: 780px; }
.diaspora-hero .section__kicker { color: var(--moss); }
.diaspora-hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.8rem); letter-spacing: -.04em; }
.diaspora-hero h1 + p { max-width: 56ch; margin: 1rem 0 0; color: rgba(255, 255, 255, .8); font-size: clamp(1.05rem, 1.7vw, 1.2rem); line-height: 1.55; }
.diaspora-hero .hero-links { margin-top: 1.4rem; }
.diaspora-hero .hero-links .btn { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); }
.diaspora-hero .hero-links .btn:hover { background: rgba(255, 255, 255, .16); }

/* Zgjedhja e mënyrës — dy panele shpalosëse (accordion ekskluziv me name=""). */
.diaspora-methods { display: grid; gap: 1rem; }
.method {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.method[open] { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); box-shadow: var(--shadow-md); }
.method > summary {
  list-style: none;
  cursor: pointer;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
}
.method > summary::-webkit-details-marker { display: none; }
.method > summary:focus-visible { outline: 2.5px solid var(--accent); outline-offset: -2px; border-radius: var(--radius-lg); }
.method__icon { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); flex-shrink: 0; }
.method__icon svg { width: 1.4rem; height: 1.4rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.method__title strong { display: block; font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink); line-height: 1.2; }
.method__title span { display: block; margin-top: .18rem; font-size: .9rem; color: var(--muted); }
.method__chev { color: var(--muted); display: grid; place-items: center; transition: transform .2s var(--ease); }
.method[open] .method__chev { transform: rotate(180deg); }
.method__body { padding: 0 clamp(1rem, 2.4vw, 1.4rem) clamp(1.2rem, 2.6vw, 1.6rem); border-top: 1px solid var(--line-soft); }

/* Formulari */
.diaspora-form { display: grid; gap: 1rem; padding-top: 1.2rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 1rem; }
.field { display: grid; gap: .35rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: .82rem; font-weight: 700; color: var(--ink-2); }
.field > label .req { color: var(--accent); }
.field input {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .6rem .8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.field input:user-invalid { border-color: #c2453b; }
.field input::placeholder { color: var(--muted); opacity: .7; }
.field small { font-size: .72rem; color: var(--muted); }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: .3rem; }
.form-privacy { flex: 1 1 15rem; font-size: .78rem; color: var(--muted); max-width: 46ch; }
.form-status { margin: 0; font-size: .9rem; font-weight: 600; }
.form-status:empty { display: none; }
.form-status[data-state="info"] { color: var(--accent-ink); }
.form-status[data-state="ok"] { color: #1f7a4d; }
.form-status[data-state="error"] { color: #c2453b; }
.form-status[data-state="error"] a { color: inherit; text-decoration: underline; }

/* Paketa me 3 dokumente */
.doc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.doc-card {
  display: grid; gap: .5rem; align-content: start;
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.doc-card__num { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--deep); color: #fff; font-weight: 850; font-size: .9rem; }
.doc-card__tag { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.doc-card h3 { font-size: 1.1rem; }
.doc-card p { font-size: .92rem; color: var(--ink-2); line-height: 1.5; }

@media (max-width: 720px) {
  .field-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .method > summary { gap: .7rem; padding: 1rem; }
  .method__icon { width: 2.4rem; height: 2.4rem; }
}

/* ─────────────────────────  FAQJA NDIHMO (/ndihmo)  ─────────────────────────
   Listë nevojash me shumë zgjedhje (tick box), shirit ngjitës me numërim, dhe
   një formular që shpaloset me sendet e zgjedhura. Zero-PII; dërgim i palidhur. */

.ndihmo-hero {
  --section-bg: var(--deep);
  --grid-line: rgba(255, 255, 255, .09);
  padding-block: clamp(2.4rem, 6vw, 4.2rem);
}
.ndihmo-hero__inner { max-width: 820px; }
.ndihmo-hero .section__kicker { color: var(--moss); }
.ndihmo-hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.8rem); letter-spacing: -.04em; }
.ndihmo-hero h1 + p { max-width: 62ch; margin: 1rem 0 0; color: rgba(255, 255, 255, .8); font-size: clamp(1.05rem, 1.7vw, 1.2rem); line-height: 1.55; }
.ndihmo-hero .hero-links { margin-top: 1.4rem; }
.ndihmo-hero .hero-links .btn { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); }
.ndihmo-hero .hero-links .btn:hover { background: rgba(255, 255, 255, .16); }

/* Grupet e nevojave */
/* Masonry me 2 kolona: kartat rrjedhin vertikalisht dhe nuk rreshtohen —
   një kartë nis aty ku mbaron ajo sipër, pa boshllëqe mes rreshtave. */
.needs-groups { columns: 2; column-gap: 1rem; }
.needs-group {
  margin: 0 0 1rem; padding: clamp(1.1rem, 2.4vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  min-inline-size: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
/* Detyron këtë kartë të nisë kolonën e djathtë, pa u mbështetur te balancimi
   automatik i kolonave (që ndryshon sipas gjerësisë së ekranit). */
.needs-group--column-start { break-before: column; -webkit-column-break-before: always; }
.needs-group__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; padding: 0; float: none; font-weight: 800; }
.needs-group__head > span:last-child { font-size: 1.05rem; color: var(--ink); }
.needs-group__icon { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); flex-shrink: 0; }
.needs-group__icon svg { width: 1.3rem; height: 1.3rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.needs-list { display: grid; gap: .5rem; }
.need-item {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem .7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.need-item:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.need-item:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.need-item:focus-within { outline: 2.5px solid var(--accent); outline-offset: 2px; }
.need-item input { margin: .12rem 0 0; width: 1.1rem; height: 1.1rem; accent-color: var(--accent); flex: 0 0 auto; cursor: pointer; }
.need-item span { font-size: .92rem; color: var(--ink); line-height: 1.35; }

/* Shiriti ngjitës me numërimin dhe veprimin */
.help-bar {
  position: sticky; bottom: max(.75rem, env(safe-area-inset-bottom));
  z-index: 30;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .6rem 1rem;
  margin-top: 1.4rem;
  padding: .75rem .8rem .75rem 1.2rem;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.help-bar__count { font-size: .92rem; color: var(--ink-2); }
.help-bar__count strong { color: var(--accent-ink); font-variant-numeric: tabular-nums; font-size: 1.15rem; }
.help-bar .btn:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }

/* Paneli i formularit */
.help-panel { margin-top: 1.5rem; padding: clamp(1.25rem, 3vw, 1.9rem); }
.help-panel[hidden] { display: none; }
.help-panel__title { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
.help-panel__intro { margin: .35rem 0 .7rem; color: var(--ink-2); font-size: .92rem; }
.help-summary { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1.2rem; padding: 0; list-style: none; }
.help-summary:empty { display: none; }
.help-summary li {
  padding: .3rem .7rem;
  background: var(--accent-soft); color: var(--accent-ink);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 700;
}
.field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  padding: .6rem .8rem; min-height: 120px; resize: vertical;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.field textarea::placeholder { color: var(--muted); opacity: .7; }

/* Financat dhe regjistri publik i kontributeve */
.contribution-section { --section-bg: var(--paper); }
.contributors-card { max-width: 900px; padding: clamp(1.2rem, 3vw, 1.8rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.contributors-card > h3, .contribution-statement h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
.contributors-table-wrap { overflow-x: auto; }
.contributors-table { width: 100%; margin-top: 1rem; border-collapse: collapse; font-size: .95rem; }
.contributors-table th { padding: .65rem .7rem; color: var(--muted); border-bottom: 2px solid var(--line); text-align: left; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.contributors-table td { padding: .85rem .7rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.contributors-table th:last-child, .contributors-table td:last-child { width: 90px; text-align: center; font-variant-numeric: tabular-nums; }
.contribution-statement { display: grid; gap: .55rem; margin-top: 1.35rem; padding: 1.1rem 1.2rem; background: var(--accent-soft); border-radius: var(--radius); }
.contribution-statement p { color: var(--ink-2); font-size: .95rem; line-height: 1.65; }

@media (max-width: 720px) {
  .needs-groups { columns: 1; }
}


/* ═════════════════════════  VIDEO (video.html)  ═════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.video-card { min-width: 0; }
.video-card__trigger {
  display: flex; flex-direction: column;
  width: 100%; padding: 0; text-align: left; cursor: pointer;
  font: inherit; color: inherit;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.video-card__trigger:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}
.video-card.is-pending .video-card__trigger { cursor: default; }
.video-card.is-pending .video-card__trigger:hover {
  transform: none; box-shadow: var(--shadow-sm); border-color: var(--line);
}

.video-card__media {
  position: relative; display: block;
  aspect-ratio: 16 / 9; background: var(--paper-2);
}
.video-card__media img { width: 100%; height: 100%; object-fit: cover; }

.video-card__play {
  position: absolute; inset: 0; margin: auto;
  width: 62px; height: 62px; display: grid; place-items: center;
  background: rgba(14, 61, 45, .82); color: #fff; border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.video-card__play svg { width: 30px; height: 30px; fill: currentColor; margin-left: 3px; }
.video-card__trigger:hover .video-card__play { transform: scale(1.08); background: var(--forest); }
.video-card.is-pending .video-card__play { display: none; }

.video-card__badge {
  position: absolute; top: .7rem; left: .7rem;
  padding: .28rem .6rem; border-radius: var(--radius-pill);
  background: rgba(14, 61, 45, .9); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.video-card:not(.is-pending) .video-card__badge { display: none; }

.video-card__body { display: block; padding: clamp(.9rem, 2vw, 1.15rem); }
.video-card__date {
  display: block; margin-bottom: .35rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.video-card__title { display: block; font-size: 1.08rem; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.video-card__desc { display: block; margin-top: .45rem; font-size: .92rem; color: var(--ink-2); line-height: 1.5; }

/* Dritarja modale e videos */
body.has-lightbox-open { overflow: hidden; }
.video-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 2.5rem);
}
.video-lightbox[hidden] { display: none; }
.video-lightbox__backdrop { position: absolute; inset: 0; background: rgba(9, 18, 13, .82); backdrop-filter: blur(3px); }
.video-lightbox__dialog { position: relative; width: min(1000px, 100%); }
.video-lightbox__frame {
  position: relative; aspect-ratio: 16 / 9; background: #000;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.video-lightbox__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-lightbox__close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%;
  box-shadow: var(--shadow-md); cursor: pointer;
}
.video-lightbox__close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; }
.video-lightbox__close:hover { background: var(--paper-2); }
@media (max-width: 560px) {
  .video-lightbox__close { top: -50px; right: 0; }
}


/* ═════════════════════  NJOFTIME PËR SHTYP (njoftime.html)  ═════════════════════ */
.release-list { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); max-width: 820px; }
.release {
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3.5vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}
.release__eyebrow {
  margin-bottom: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.release__title { font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.18; }
.release__subtitle { margin-top: .55rem; font-size: 1.02rem; font-weight: 600; color: var(--ink-2); line-height: 1.4; }
.release__lead { margin-top: .9rem; color: var(--ink-2); font-size: 1.02rem; line-height: 1.6; }

.release__more { margin-top: 1.1rem; }
.release__toggle {
  display: inline-flex; align-items: center; gap: .4rem; width: max-content;
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: .95rem; color: var(--accent-ink);
  padding: .45rem .9rem;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: var(--radius-pill);
  transition: background .15s var(--ease);
}
.release__toggle::-webkit-details-marker { display: none; }
.release__toggle:hover { background: color-mix(in srgb, var(--accent) 16%, var(--surface)); }
.release__chev {
  width: 17px; height: 17px; fill: none; stroke: currentColor;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s var(--ease);
}
.release__more[open] .release__chev { transform: rotate(180deg); }
.release__toggle-less { display: none; }
.release__more[open] .release__toggle-more { display: none; }
.release__more[open] .release__toggle-less { display: inline; }

.release__body { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.release__body > p { margin-bottom: 1rem; color: var(--ink-2); line-height: 1.68; }
.release__body h3 { margin: 1.6rem 0 .7rem; font-size: 1.12rem; color: var(--ink); letter-spacing: -.01em; }
.release__quote {
  margin: 1.4rem 0; padding: .2rem 0 .2rem 1.1rem;
  border-left: 3px solid var(--accent);
  font-size: 1.15rem; font-weight: 600; font-style: italic; color: var(--ink);
}
.release__contact { margin: 1.2rem 0; font-size: .95rem; color: var(--ink-2); }
.release__sources { margin-top: 1.4rem; padding: 1rem 1.2rem; background: var(--paper-2); border-radius: var(--radius); }
.release__sources-title {
  margin-bottom: .55rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.release__sources ol, .release__sources ul { margin: 0; padding-left: 1.2rem; display: grid; gap: .3rem; }
.release__sources ol { list-style: decimal; }
.release__sources ul { list-style: disc; }
.release__sources li { font-size: .86rem; color: var(--ink-2); line-height: 1.45; }

/* ───────────────────────────────────────────────────────────────────
   Dark mode — button re-toning.
   Several button variants hardcode light backgrounds (white pills,
   #ecefeb, deep-green primary) that were tuned for light surfaces. On the
   dark theme they turned into harsh, low-contrast pills. Re-tone them here
   so they read as proper dark-theme controls, on-brand with the green.
   ─────────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  /* Header action buttons (desktop top bar) */
  :root:not([data-theme="light"]) .site-nav__actions .btn--ghost {
    --btn-bg: color-mix(in srgb, var(--surface) 86%, #ffffff);
    --btn-fg: var(--ink);
    --btn-bd: color-mix(in srgb, var(--ink) 16%, transparent);
  }
  :root:not([data-theme="light"]) .site-nav__actions .btn--ghost:hover {
    --btn-bg: color-mix(in srgb, var(--surface) 74%, #ffffff);
    --btn-bd: color-mix(in srgb, var(--accent) 55%, transparent);
  }

  /* Hero secondary buttons sitting on the dark grid ground */
  :root:not([data-theme="light"]) .landing-page .hero .btn--ghost,
  :root:not([data-theme="light"]) .dosja-page .page-header .btn--ghost,
  :root:not([data-theme="light"]) .volunteer-page .volunteer-hero .btn--ghost {
    color: var(--ink);
    background: color-mix(in srgb, var(--surface) 85%, transparent);
    border-color: color-mix(in srgb, var(--ink) 16%, transparent);
  }
  :root:not([data-theme="light"]) .landing-page .hero .btn--ghost:hover,
  :root:not([data-theme="light"]) .dosja-page .page-header .btn--ghost:hover,
  :root:not([data-theme="light"]) .volunteer-page .volunteer-hero .btn--ghost:hover {
    background: var(--surface);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  }

  /* Hero primary CTA — use the bright accent instead of near-black on deep green */
  :root:not([data-theme="light"]) .landing-page .hero .btn--primary {
    --btn-bg: var(--accent);
    --btn-fg: var(--on-accent);
  }
}

/* ─────────────────────────────────────────────────────────────
   Grupi nismëtar — 12 rrathë me foto te faqja «Rreth misionit»,
   secili çon te faqja e profilit /nismetaret/<slug>.
   ───────────────────────────────────────────────────────────── */
.initiators-section {
  --section-bg: var(--surface);
  background-color: var(--surface);
}
.about-page .initiators-section { background-color: var(--surface); }

.initiators {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2rem) clamp(.5rem, 1.4vw, 1rem);
  margin: clamp(1.4rem, 3vw, 2.2rem) 0 0;
  padding: 0;
  list-style: none;
}
.initiator { min-width: 0; }
.initiator__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
}
.initiator__avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(66px, 11vw, 112px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper-2);
  box-shadow: var(--shadow-sm);
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.initiator__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.initiator__avatar--placeholder {
  color: var(--muted);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  letter-spacing: .04em;
  background: linear-gradient(160deg, color-mix(in srgb, var(--ink) 6%, var(--paper-2)), var(--paper-2));
  border: 1px solid var(--line-soft);
}
.initiator__link:hover .initiator__avatar,
.initiator__link:focus-visible .initiator__avatar {
  outline-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.initiator__link:focus-visible { outline: none; }
.initiator__name {
  font-size: clamp(.82rem, 1.25vw, .95rem);
  font-weight: 750;
  line-height: 1.2;
}
.initiator__role {
  font-size: clamp(.7rem, 1.05vw, .78rem);
  color: var(--muted);
  line-height: 1.28;
}
.initiator__link:hover .initiator__name,
.initiator__link:focus-visible .initiator__name { color: var(--accent-ink); }

@media (max-width: 860px) {
  .initiators { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .initiators { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem .5rem; }
}

/* ── Faqja e profilit të një nismëtari ── */
.initiator-post__id {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.initiator-post__avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: clamp(88px, 16vw, 132px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper-2);
  box-shadow: var(--shadow-md);
  outline: 3px solid var(--surface);
  outline-offset: 0;
}
.initiator-post__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.initiator-post__avatar--placeholder {
  color: var(--muted);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: .04em;
  background: linear-gradient(160deg, color-mix(in srgb, var(--ink) 6%, var(--paper-2)), var(--paper-2));
}
.initiator-post__id h1 { margin: .35rem 0 0; }
.initiator-post__role {
  margin-top: .55rem;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-weight: 600;
}
.initiator-post .dossier-post__body p a {
  color: var(--accent-ink);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 45%, transparent);
  text-underline-offset: 2px;
}
.initiator-post .dossier-post__body p a:hover { text-decoration-color: var(--accent); }

@media (max-width: 560px) {
  .initiator-post__id { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Gjetësi i turneve: vendi së pari, pastaj ora ── */
.landing-page #nenshkruaj .signing-finder {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
}
.landing-page #nenshkruaj .signing-finder__controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.landing-page #nenshkruaj .signing-finder__search-label > span:first-child,
.landing-page #nenshkruaj .signing-finder__label {
  display: block;
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 850;
}
.landing-page #nenshkruaj .signing-finder__search { position: relative; display: block; }
.landing-page #nenshkruaj .signing-finder__search svg {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.15rem;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  transform: translateY(-50%);
  pointer-events: none;
}
.landing-page #nenshkruaj .signing-finder__search input {
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem .8rem 2.8rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  font: inherit;
}
.landing-page #nenshkruaj .signing-finder__search input:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.landing-page #nenshkruaj .signing-finder__tabs {
  display: flex;
  gap: .35rem;
  padding: .3rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.landing-page #nenshkruaj .signing-finder__tabs button {
  min-height: 42px;
  padding: .65rem 1rem;
  color: var(--ink-2);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}
.landing-page #nenshkruaj .signing-finder__tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 5px 14px rgba(14, 61, 45, .2);
}
.landing-page #nenshkruaj .signing-finder__tabs button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 2px;
}
.landing-page #nenshkruaj .signing-finder__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 1rem;
  margin: 1.2rem 0 .85rem;
}
.landing-page #nenshkruaj .signing-finder__meta .signing-shifts__status { margin: 0; font-weight: 700; }
.landing-page #nenshkruaj .signing-finder__meta .signing-shifts__status strong { color: var(--ink); }
.landing-page #nenshkruaj .signing-finder__timezone { margin: 0; color: var(--muted); font-size: .78rem; }
.landing-page #nenshkruaj .shift-list { display: grid; grid-template-columns: 1fr; gap: .8rem; }
.landing-page #nenshkruaj .shift-card {
  display: grid;
  grid-template-columns: minmax(170px, .75fr) minmax(250px, 1.5fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 0;
  padding: 1rem;
  border-radius: 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.landing-page #nenshkruaj .shift-card:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: var(--shadow-md);
}
.landing-page #nenshkruaj .shift-card.is-live {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 42%, var(--paper));
  box-shadow: 0 8px 22px rgba(14, 61, 45, .12);
}
.landing-page #nenshkruaj .shift-card[hidden] { display: none; }
.landing-page #nenshkruaj .shift-card__where { gap: .2rem; }
.landing-page #nenshkruaj .shift-card__region {
  color: var(--accent);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.landing-page #nenshkruaj .shift-card__place { font-size: 1.12rem; }
.landing-page #nenshkruaj .shift-card__unit { font-size: .82rem; line-height: 1.4; }
.landing-page #nenshkruaj .shift-card__spot { margin-top: .12rem; font-size: .8rem; line-height: 1.4; }
.landing-page #nenshkruaj .shift-card__next {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}
.landing-page #nenshkruaj .shift-card__date {
  display: grid;
  place-items: center;
  width: 52px;
  height: 56px;
  color: #fff;
  background: var(--deep);
  border-radius: 11px;
}
.landing-page #nenshkruaj .shift-card__date strong { font-size: 1.35rem; line-height: 1; }
.landing-page #nenshkruaj .shift-card__date .shift-card__live-dot {
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .2);
  animation: shift-live-pulse 1.6s ease-out infinite;
}
.landing-page #nenshkruaj .shift-card.is-live .shift-card__date { background: var(--accent); }
.landing-page #nenshkruaj .shift-card.is-live .shift-card__next-label { color: var(--deep); }
.landing-page #nenshkruaj .shift-card.is-live .shift-card__single {
  color: var(--deep);
  background: var(--accent-soft);
  padding: .5rem .7rem;
  border-radius: var(--radius-pill);
}
@keyframes shift-live-pulse {
  70%, 100% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .landing-page #nenshkruaj .shift-card__date .shift-card__live-dot { animation: none; }
}
.landing-page #nenshkruaj .shift-card__date small { font-size: .62rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.landing-page #nenshkruaj .shift-card__next-copy { display: grid; gap: .12rem; min-width: 0; }
.landing-page #nenshkruaj .shift-card__next-label { color: var(--moss); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.landing-page #nenshkruaj .shift-card__next-copy strong { color: var(--ink); font-size: .9rem; }
.landing-page #nenshkruaj .shift-card__next-copy time { color: var(--ink-2); font-size: .8rem; font-weight: 700; }
.landing-page #nenshkruaj .shift-card__zone { color: var(--muted); font-size: .68rem; font-weight: 700; }
.landing-page #nenshkruaj .shift-card__more {
  padding: .58rem .75rem;
  color: var(--deep);
  background: var(--accent-soft);
  border: 0;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: .75rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}
.landing-page #nenshkruaj .shift-card__more:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent); outline-offset: 2px; }
.landing-page #nenshkruaj .shift-card__single { color: var(--muted); font-size: .72rem; font-weight: 750; white-space: nowrap; }
.landing-page #nenshkruaj .shift-card__dates {
  grid-column: 2 / -1;
  display: none;
  gap: .55rem;
  margin-top: -.2rem;
  padding: .9rem 0 0 1rem;
  border-top: 1px dashed var(--line);
}
.landing-page #nenshkruaj .shift-card.is-open .shift-card__dates { display: grid; }
.landing-page #nenshkruaj .shift-card__dates > div { display: flex; flex-wrap: wrap; gap: .4rem .7rem; color: var(--ink-2); font-size: .8rem; }
.landing-page #nenshkruaj .shift-card__dates strong { min-width: 140px; color: var(--ink); }
.landing-page #nenshkruaj .signing-finder__empty {
  margin: .8rem 0 0;
  padding: 1.7rem;
  color: var(--ink-2);
  text-align: center;
  background: var(--paper);
  border-radius: 14px;
}

@media (max-width: 820px) {
  .landing-page #nenshkruaj .signing-finder__controls { grid-template-columns: 1fr; }
  .landing-page #nenshkruaj .signing-finder__tabs { width: 100%; }
  .landing-page #nenshkruaj .signing-finder__tabs button { flex: 1; }
  .landing-page #nenshkruaj .shift-card { grid-template-columns: 1fr auto; }
  .landing-page #nenshkruaj .shift-card__where { grid-column: 1 / -1; }
  .landing-page #nenshkruaj .shift-card__next { padding: .8rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .landing-page #nenshkruaj .shift-card__dates { grid-column: 1 / -1; padding-left: 0; }
}
@media (max-width: 520px) {
  .landing-page #nenshkruaj .signing-finder__timezone { width: 100%; }
  .landing-page #nenshkruaj .shift-card { grid-template-columns: 1fr; }
  .landing-page #nenshkruaj .shift-card__more,
  .landing-page #nenshkruaj .shift-card__single { justify-self: start; }
}
