/* ============================================
   FINDUS – das WerteHaus
   Statisches HTML/CSS/JS, kein CMS, kein Framework.
   Aufbau/Komponenten-System analog zu kahru.de.
   ============================================ */

/* ============================================
   Web Fonts (lokal, DSGVO-konform, identisch zu kahru.de)
   ============================================ */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../files/fonts/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../files/fonts/4iCs6KVjbNBYlgoKfw72.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../files/fonts/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../files/fonts/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../files/fonts/KFOjCneDtsqEr0keqCMhbCc6CsQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Ubuntu Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../files/fonts/KFO-CneDtsqEr0keqCMhbC-BL9H1tY0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

/* ============================================
   Design-Tokens – Farben aus dem Findus-Logo
   ============================================ */
:root {
  --ink: #17201a;
  --ink-soft: #40493f;
  --paper: #f3f5f0;
  --paper-deep: #e7ebe1;
  --white: #ffffff;
  --slate: #656e61;
  --border: #dfe4d8;

  --green: #10823d;
  --green-dark: #0b5e2b;
  --green-tint: #e2f3e6;

  --magenta: #ad007c;
  --magenta-dark: #7f005c;
  --magenta-tint: #f7e2ef;

  --lime: #97b526;
  --lime-dark: #6f8a17;
  --lime-tint: #f0f6d9;

  --font-display: "Ubuntu", Verdana, Arial, sans-serif;
  --font-body: "Ubuntu", Verdana, Arial, sans-serif;
  --font-mono: "Ubuntu Mono", "SFMono-Regular", Consolas, monospace;

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;

  --maxw: 1280px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 128%;
  color: var(--ink);
  background: #cae8ef url('../files/intern/common/findus_wertehaus_hintergrund.jpg') center top fixed;
  background-size: 2850px auto;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 760px) {
  /* fixed attachment ist auf iOS unzuverlässig/ruckelig */
  body { background-attachment: scroll; background-size: 1650px auto; }
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.wrap { max-width: var(--maxw); width: 100%; margin: 0 auto; padding: 0 32px; box-sizing: border-box; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: var(--radius-s); z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ============================================
   Eyebrow / Mono-Akzente
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 1.1em;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 27px; height: 26px;
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-weight: 700;
  border-radius: var(--radius-s);
  border: 1.5px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 28px -6px rgba(16,130,61,0.45); }
.btn--magenta { background: var(--magenta); color: var(--white); }
.btn--magenta:hover { background: var(--magenta-dark); transform: translateY(-2px); box-shadow: 0 10px 28px -6px rgba(173,0,124,0.4); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px -6px rgba(16,130,61,0.25); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { border-color: var(--lime); color: var(--lime); }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(202, 232, 239, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; flex-direction: column; gap: 4px; margin-right: auto; }
.brand__logo { height: 88px; width: auto; display: block; }
.brand__sub { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.06em; color: var(--slate); text-transform: uppercase; }

.nav ul { display: flex; gap: 30px; }
.nav a {
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--magenta);
  transition: width 0.2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }

/* ============================================
   Hero (Startseite) – Foto-Slider
   ============================================ */
.hero { padding: 0; }
.slider {
  position: relative;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  background: var(--ink);
  height: 66vh;
  height: 66dvh;
  min-height: 440px;
  max-height: 680px;
}
.slider__track { position: relative; height: 100%; }
.slider__slide { position: absolute; inset: 0; opacity: 0; z-index: 1; transition: opacity 3s cubic-bezier(0.65,0,0.35,1); }
.slider__slide.is-active { opacity: 1; z-index: 2; }
.slider__slide img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.1); }

@keyframes kb-zoom-in   { from { transform: scale(1.07) translate(0,     0);    } to { transform: scale(1.0)  translate(0,    0);   } }
@keyframes kb-zoom-out  { from { transform: scale(1.0)  translate(0,     0);    } to { transform: scale(1.07) translate(0,    0);   } }
@keyframes kb-pan-br-tl { from { transform: scale(1.06) translate(1%,    0.8%); } to { transform: scale(1.02) translate(-0.8%, -0.5%); } }
@keyframes kb-pan-tl-br { from { transform: scale(1.06) translate(-1%,  -0.8%); } to { transform: scale(1.02) translate(0.8%,  0.5%); } }
@media (prefers-reduced-motion: no-preference) {
  .slider__slide img.kb-1 { animation: kb-zoom-in   9s cubic-bezier(0.65,0,0.35,1) forwards; }
  .slider__slide img.kb-2 { animation: kb-zoom-out  9s cubic-bezier(0.65,0,0.35,1) forwards; }
  .slider__slide img.kb-3 { animation: kb-pan-br-tl 9s cubic-bezier(0.65,0,0.35,1) forwards; }
  .slider__slide img.kb-4 { animation: kb-pan-tl-br 9s cubic-bezier(0.65,0,0.35,1) forwards; }
}
.slider__overlay {
  position: absolute; inset: 0; width: 100%;
  background: linear-gradient(to right, rgba(10,25,15,0.48) 0%, rgba(10,25,15,0.2) 55%, rgba(10,25,15,0) 100%);
  display: flex; align-items: flex-end; padding-bottom: 64px; z-index: 2;
}
.hero__headline { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); margin-bottom: 0.4em; line-height: 1.12; }
.hero__lead { color: rgba(255,255,255,0.88); max-width: 46ch; margin-bottom: 1.4em; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; padding: 0; width: 52px; height: 52px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3;
}
.slider__btn svg { width: 42px; height: 42px; stroke: rgba(255,255,255,0.85); stroke-width: 2; fill: none; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6)); transition: stroke 0.2s ease; }
.slider__btn:hover svg { stroke: var(--lime); }
.slider__btn--prev { left: 16px; }
.slider__btn--next { right: 16px; }
.slider__dots { position: absolute; bottom: 20px; right: 24px; display: flex; gap: 8px; z-index: 3; }
.slider__dot { width: 10px; height: 3px; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s ease, width 0.2s ease; }
.slider__dot.is-active { background: var(--white); width: 24px; }

/* Info-Leiste unter dem Hero: Öffnungszeiten + Adresse */
.hero__meta-bar { background: var(--white); color: var(--ink-soft); border-bottom: 4px solid var(--magenta); }
.hero__meta-inner { display: flex; align-items: center; justify-content: center; gap: 0; padding: 22px 0; flex-wrap: wrap; }
.hero__meta-item { display: flex; align-items: baseline; gap: 10px; padding: 0 48px 0 0; color: var(--ink-soft); }
.hero__meta-item strong { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.hero__meta-divider { width: 1px; height: 32px; background: var(--border); margin-right: 48px; flex-shrink: 0; }

/* ============================================
   Sections (generisch)
   ============================================ */
.section { padding: 88px 0; }
.section--alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--tight { padding: 52px 0; }
.section--green { background: var(--ink); color: var(--white); }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.3rem); max-width: 24ch; }
.section__title--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 30ch; }
.section__lead { max-width: 60ch; margin-bottom: 2.2em; }
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 0; transform: translateY(18px); } }

/* ============================================
   Karten (Vorteile / Info)
   ============================================ */
.cards--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(20,20,20,0.2); border-color: var(--green); }
.card__icon { width: 48px; height: 48px; border-radius: var(--radius-s); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card__icon svg { width: 24px; height: 24px; }
.card__icon--green { background: var(--green-tint); color: var(--green-dark); }
.card__icon--magenta { background: var(--magenta-tint); color: var(--magenta-dark); }
.card__icon--lime { background: var(--lime-tint); color: var(--lime-dark); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.card p { margin: 0; flex: 1; }

/* ============================================
   Split-Layout (Öffnungszeiten / Standort)
   ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px;
}
.info-card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 10px; margin-bottom: 1em; }
.info-card h3 svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; }
.info-card dt { font-weight: 700; color: var(--ink); }
.info-card dd { margin: 0; color: var(--ink-soft); }
.info-card .note { font-size: 0.85rem; color: var(--slate); font-style: italic; }
.info-card address { font-style: normal; }

.map-embed { border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; display: block; border: 0; }
.map-embed__link { display: block; text-align: center; padding: 10px; font-size: 0.85rem; background: var(--white); border-top: 1px solid var(--border); }
.map-embed__link a { color: var(--green-dark); font-weight: 600; }

/* ============================================
   Galerie mit Lightbox
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.gallery-grid__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-m);
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--paper-deep);
  display: block;
}
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-grid__item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 15, 10, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius-s); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close svg { width: 22px; height: 22px; stroke: var(--white); stroke-width: 2; fill: none; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox__nav svg { width: 26px; height: 26px; stroke: var(--white); stroke-width: 2; fill: none; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ============================================
   Chip-Grid (Warenannahme: Was kann gebracht werden)
   ============================================ */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.chip {
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-dark);
  border: 1px solid transparent;
}

/* ============================================
   Personen-Karten (Verein: Vorstand)
   ============================================ */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.people-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  border-top: 3px solid var(--magenta);
}
.people-card--accent { border-top-color: var(--green); }
.people-card__role { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--magenta-dark); display: block; margin-bottom: 0.5em; }
.people-card--accent .people-card__role { color: var(--green-dark); }
.people-card h3 { font-size: 1.15rem; margin: 0; }

/* ============================================
   Spendenbericht – dichte Liste
   ============================================ */
.donation-report {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 40px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
}
.donation-report li { font-size: 0.85rem; color: var(--ink-soft); padding: 5px 0; border-bottom: 1px dashed var(--border); }
.donation-report li:last-child { border-bottom: none; }
.donation-highlight {
  background: var(--lime-tint);
  border-left: 4px solid var(--lime-dark);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  padding: 22px 26px;
  margin: 32px 0;
}
.donation-highlight p { margin: 0; color: var(--ink); }

/* ============================================
   Unterseiten-Header
   ============================================ */
.page-hero { padding: 60px 0 52px; border-bottom: 1px solid var(--border); background: var(--white); }
.page-hero__inner { max-width: 720px; }
.page-hero__title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.4em; }
.page-hero__lead { color: var(--ink-soft); margin: 0; }

/* ============================================
   Impressum / Datenschutz Fließtext
   ============================================ */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.35rem; margin: 2em 0 0.5em; }
.prose h3 { font-size: 1.15rem; margin: 1.6em 0 0.4em; }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.prose a { color: var(--green-dark); text-decoration: underline; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--white); color: var(--ink-soft); padding: 48px 0 0; border-top: 4px solid var(--magenta); }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.brand__logo--footer { opacity: 1; }
.brand--footer { margin-right: 0; }
.brand--footer .brand__sub { color: var(--slate); }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a, .footer-legal a { font-size: 0.85rem; color: var(--ink-soft); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--magenta-dark); }
.footer-legal { display: flex; gap: 18px; }
.site-footer__copy { font-size: 0.85rem; color: var(--slate); padding: 20px 0 26px; }

/* ============================================
   Mobile Navigation
   ============================================ */
@media (max-width: 980px) {
  .brand__logo { height: 68px; }
  .site-header { background: #cae8ef; -webkit-backdrop-filter: none; backdrop-filter: none; }
  body.nav-open::after { content: ''; position: fixed; inset: 0; background: rgba(10,20,10,0.6); z-index: 98; cursor: pointer; }

  .nav {
    position: fixed; top: 0; left: 0; bottom: 0; right: auto;
    width: 78vw; max-width: 420px;
    background: var(--ink);
    border-right: 2px solid var(--lime);
    padding: 28px 28px 44px;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    z-index: 101;
  }
  .nav::before {
    content: ''; display: block; width: 150px; height: 44px;
    background: url('../files/intern/header/findus_wertehaus_logo.png') no-repeat left center;
    background-size: contain;
    filter: brightness(0) invert(1); opacity: 0.92;
    margin-bottom: 26px; padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav.is-open { transform: translateX(0); box-shadow: 24px 0 64px rgba(0,10,0,0.5); }
  .nav ul { flex-direction: column; gap: 0; }
  .nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav a { display: block; font-size: 1.15rem; font-weight: 700; color: rgba(255,255,255,0.8); padding: 16px 0; }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--lime); padding-left: 8px; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--ink); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 64px 0; }
  .slider { height: 54vh; height: 54dvh; min-height: 340px; }
  .hero__meta-inner { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .hero__meta-divider { display: none; }
  .hero__meta-item { padding: 0; }
  .site-footer__inner { justify-content: center; text-align: center; }
  .site-footer__copy { text-align: center; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .donation-report { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 44px 0 36px; }
}

@media (max-width: 760px) {
  body { font-size: 100%; line-height: 1.45; }
  p { margin-bottom: 1.4em; }
  .wrap { padding: 0 20px; }
  .brand__logo { height: 52px; }
  .site-header__inner { padding-top: 18px; padding-bottom: 18px; }
  .nav { padding-top: 26px; padding-left: 26px; padding-right: 26px; }
  .section { padding: 48px 0; }
  .section--tight { padding: 36px 0; }

  .slider { height: 48vh; height: 48dvh; min-height: 260px; }
  .slider__overlay { padding-bottom: 28px; }
  .slider__btn { display: none; }
  .hero__headline { font-size: clamp(1.3rem, 5vw, 1.9rem); }
  .hero__actions .btn { padding: 8px 16px; font-size: 0.85rem; }
  .hero__meta-inner { gap: 4px; padding: 28px 0; }
  .hero__meta-item { line-height: 1.3; }

  .cards--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: 1fr; }
  .donation-report { grid-template-columns: 1fr; padding: 26px 22px; }
  .site-footer__inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-bottom: 20px; }
  .footer-nav, .footer-legal { justify-content: center; }
  .footer-legal { padding-top: 14px; border-top: 1px solid var(--border); }
  .site-footer__copy { padding: 14px 0 20px; }
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 42px; height: 42px; }
}
