/* =====================================================================
   Lichtblicke Mühldorf am Inn e.V. — Stylesheet
   Design: warm hero / seriös bei Inhalten. Portabel, ohne Build-Tools.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Color palette */
  --c-bg:           #ffffff;
  --c-bg-warm:      #fff8f0;       /* hero / highlights */
  --c-bg-sand:      #fbf1e6;       /* card / IBAN box */
  --c-bg-soft:      #f7f3ee;       /* footer / alt section */
  --c-text:         #2a2a2a;
  --c-text-soft:    #555f6b;
  --c-text-muted:   #7a8290;
  --c-border:       #e8ddd0;
  --c-border-soft:  #efe6da;

  --c-primary:      #d17a22;       /* warm orange — CTA, highlights */
  --c-primary-dark: #a85d12;       /* hover */
  --c-primary-soft: #f4d2a6;       /* tinted backgrounds */
  --c-accent:       #2c3e50;       /* deep blue/anthracite — trust */
  --c-accent-soft:  #4a5d72;

  /* Typography */
  --font-serif: "Source Serif Pro", "Source Serif 4", Cambria, Georgia, "Times New Roman", serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-300: 0.875rem;
  --fs-400: 1rem;
  --fs-500: 1.125rem;
  --fs-600: 1.25rem;
  --fs-700: 1.5rem;
  --fs-800: 2rem;
  --fs-900: 2.75rem;
  --fs-hero: clamp(2rem, 4vw + 1rem, 3.75rem);

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --maxw: 1140px;
  --maxw-narrow: 780px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(20, 20, 20, 0.04), 0 2px 6px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 4px 14px rgba(20, 20, 20, 0.08), 0 10px 30px rgba(20, 20, 20, 0.06);

  --header-h: 88px;
}

/* ---------- 2. Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-400);
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--c-primary); outline-offset: 2px; border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-accent);
  margin: 0 0 var(--sp-4);
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-600); }
h4 { font-size: var(--fs-500); }
p { margin: 0 0 var(--sp-4); }
ul, ol { padding-left: 1.4em; }
small { color: var(--c-text-muted); }

/* ---------- 3. Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--sp-5); }
.container--narrow { max-width: var(--maxw-narrow); }
.section { padding: var(--sp-8) 0; }
.section--alt { background: var(--c-bg-soft); }
.section--warm { background: var(--c-bg-warm); }
.section--sand { background: var(--c-bg-sand); }
@media (min-width: 720px) { .section { padding: var(--sp-9) 0; } }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-300);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-dark);
  margin-bottom: var(--sp-3);
}

.lead { font-size: var(--fs-500); color: var(--c-text-soft); }

/* ---------- 4. Header & Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-border-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.nav__brand {
  display: flex; align-items: center; gap: var(--sp-3);
  text-decoration: none;
  min-height: 56px;
}
.nav__brand:hover { text-decoration: none; opacity: 0.85; }
.nav__brand img {
  height: 56px;
  width: auto;
  max-width: 300px;
}
@media (max-width: 480px) {
  .nav__brand img { height: 40px; max-width: 200px; }
}

/* Hero-logo: prominent first impression on the homepage */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-7);
}
.hero-logo img {
  width: 100%;
  max-width: 720px;
  height: auto;
}
@media (max-width: 720px) {
  .hero-logo { margin-bottom: var(--sp-5); }
  .hero-logo img { max-width: 480px; }
}

.nav__menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: var(--sp-2);
}
.nav__menu a {
  display: inline-block; padding: var(--sp-2) var(--sp-4);
  color: var(--c-accent); font-weight: 500; border-radius: 6px;
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.nav__menu a:hover { background: var(--c-bg-sand); color: var(--c-primary-dark); }
.nav__menu a[aria-current="page"] { color: var(--c-primary-dark); background: var(--c-bg-sand); }

.nav__toggle {
  display: none; background: none; border: 0; padding: var(--sp-2);
  cursor: pointer; color: var(--c-accent);
}
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border-soft);
    padding: var(--sp-3) var(--sp-5);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-sm);
  }
  .nav__menu a { padding: var(--sp-3); border-radius: 6px; }
  .nav.is-open .nav__menu { transform: translateY(0); }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans); font-size: var(--fs-400); font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.05s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--c-accent); border-color: var(--c-accent); }
.btn--ghost:hover { background: var(--c-accent); color: #fff; }

.btn--soft { background: var(--c-bg-sand); color: var(--c-primary-dark); }
.btn--soft:hover { background: var(--c-primary-soft); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  padding: var(--sp-8) 0 var(--sp-9);
  overflow: hidden;
}
.hero__inner {
  display: grid; gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.1fr 1fr; }
}
.hero h1 { color: var(--c-accent); margin-bottom: var(--sp-5); }
.hero__lead { font-size: var(--fs-500); color: var(--c-text-soft); margin-bottom: var(--sp-6); max-width: 36ch; }
.hero__since {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 999px; padding: 4px 12px;
  font-size: var(--fs-300); font-weight: 600; color: var(--c-primary-dark);
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-sm);
}
.hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 7. Generic feature grid / cards ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #fff; border: 1px solid var(--c-border-soft);
  border-radius: var(--radius); padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.card h3 { color: var(--c-accent); }
.card p:last-child { margin-bottom: 0; }

.card--icon { text-align: left; }
.card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-bg-sand);
  color: var(--c-primary-dark);
  margin-bottom: var(--sp-4);
  font-size: 22px;
}

/* News card with image */
.news-card { background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.news-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-bg-soft); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-size: var(--fs-300); color: var(--c-text-muted); font-weight: 600; margin-bottom: var(--sp-2); letter-spacing: 0.04em; }
.news-card h3 { font-size: var(--fs-600); margin-bottom: var(--sp-3); }
.news-card p { color: var(--c-text-soft); }

/* Article (long form, like a single news entry on aktuelles page) */
.article {
  display: grid; gap: var(--sp-5);
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--c-border-soft);
}
@media (min-width: 720px) {
  .article { grid-template-columns: 320px 1fr; gap: var(--sp-7); }
}
.article:last-child { border-bottom: none; }
.article__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.article__media img { width: 100%; height: 100%; object-fit: cover; }
.article__date { font-size: var(--fs-300); color: var(--c-primary-dark); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.article h2 { font-size: var(--fs-700); margin-bottom: var(--sp-3); }

/* ---------- 8. Board portraits ---------- */
.board-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 600px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .board-grid { grid-template-columns: repeat(4, 1fr); } }

.board-card { text-align: center; }
.board-card__photo {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-4);
  border: 4px solid #fff;
  box-shadow: 0 4px 18px rgba(20, 20, 20, 0.12);
}
.board-card h3 { font-size: var(--fs-500); margin: 0 0 var(--sp-1); }
.board-card__role { color: var(--c-primary-dark); font-weight: 600; font-size: var(--fs-300); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.board-card p { color: var(--c-text-soft); font-size: var(--fs-300); margin: 0; }

/* ---------- 9. Donation / IBAN highlight box ---------- */
.iban-box {
  background: linear-gradient(135deg, var(--c-bg-sand) 0%, #fff 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-md);
}
.iban-box h3 { color: var(--c-primary-dark); }
.iban-box dl { display: grid; gap: var(--sp-2); margin: var(--sp-4) 0; }
.iban-box dt { font-weight: 600; color: var(--c-text); }
.iban-box dd { margin: 0; color: var(--c-text-soft); font-variant-numeric: tabular-nums; word-break: break-all; }
@media (min-width: 600px) {
  .iban-box dl { grid-template-columns: 130px 1fr; align-items: baseline; }
}
.iban-box .iban-value {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: ui-monospace, SFMono-Regular, "Cascadia Mono", Menlo, monospace;
  background: #fff; border: 1px solid var(--c-border);
  border-radius: 6px; padding: 4px 10px; font-size: var(--fs-400);
}

/* Quote block */
.quote {
  border-left: 4px solid var(--c-primary);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-bg-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: var(--fs-500);
  font-style: italic;
  color: var(--c-text);
}
.quote cite { display: block; margin-top: var(--sp-3); font-size: var(--fs-300); font-style: normal; color: var(--c-text-muted); }

/* ---------- 10. Forms / Contact ---------- */
.contact-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info dt { font-weight: 600; color: var(--c-accent); margin-top: var(--sp-3); }
.contact-info dd { margin: 0; color: var(--c-text-soft); }
.contact-info dd a { color: var(--c-primary-dark); }

.form-field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-field label { font-weight: 600; font-size: var(--fs-300); color: var(--c-accent); }
.form-field input,
.form-field textarea {
  font: inherit; padding: 0.7rem 0.9rem;
  border: 1px solid var(--c-border); border-radius: 8px;
  background: #fff; color: var(--c-text);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(209, 122, 34, 0.18);
}

/* ---------- 11. Document list ---------- */
.doc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.doc-list a {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: #fff; border: 1px solid var(--c-border-soft);
  border-radius: var(--radius); color: var(--c-accent);
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.doc-list a:hover { background: var(--c-bg-sand); border-color: var(--c-primary-soft); text-decoration: none; }
.doc-list a::before {
  content: "📄"; font-size: 22px; flex-shrink: 0;
}
.doc-list span.doc-meta { color: var(--c-text-muted); font-size: var(--fs-300); margin-left: auto; }

/* ---------- 12. Footer ---------- */
.site-footer {
  background: var(--c-accent);
  color: #d8dde3;
  padding: var(--sp-8) 0 var(--sp-5);
  margin-top: var(--sp-9);
}
.site-footer h4 { color: #fff; font-size: var(--fs-500); margin-bottom: var(--sp-3); }
.site-footer a { color: #fff; }
.site-footer__grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer__brand p { color: #b6bdc6; max-width: 38ch; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: var(--sp-2); }
.site-footer__legal {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  justify-content: space-between; align-items: center;
  color: #9aa3ad; font-size: var(--fs-300);
}
.site-footer__legal a { color: #d8dde3; }

/* ---------- 13. Skip link / accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-accent); color: #fff;
  padding: var(--sp-3) var(--sp-4); z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 14. Page header (subpages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--c-bg-warm) 0%, var(--c-bg) 100%);
  padding: var(--sp-7) 0 var(--sp-6);
  border-bottom: 1px solid var(--c-border-soft);
}
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero p { color: var(--c-text-soft); max-width: 60ch; font-size: var(--fs-500); }

/* ---------- 15. Mood image strip ---------- */
.mood-strip {
  display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .mood-strip { grid-template-columns: repeat(4, 1fr); } }
.mood-strip figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.mood-strip img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 16b. Floating donate button (FAB) ---------- */
.fab-donate {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--c-primary);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-400);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(209, 122, 34, 0.35), 0 2px 6px rgba(20,20,20,0.18);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fab-donate::before {
  content: ""; display: inline-block;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 21s-7-4.5-9.5-9C.7 8.5 2.5 4 6.5 4c1.9 0 3.4 1 4.5 2.5C12.1 5 13.6 4 15.5 4c4 0 5.8 4.5 4 8-2.5 4.5-9.5 9-9.5 9z'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.fab-donate:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(209, 122, 34, 0.45), 0 4px 10px rgba(20,20,20,0.22); text-decoration: none; color: #fff; }
.fab-donate:active { transform: translateY(0); }
@media (max-width: 480px) {
  .fab-donate { padding: 0.7rem 1.05rem; font-size: 0.95rem; }
}
/* hide on print */
@media print { .fab-donate { display: none !important; } }

/* ---------- 16c. Stat strip (modern hero footer) ---------- */
.stat-strip {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  padding: var(--sp-7) var(--sp-5);
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
  border-top: 1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-strip__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-primary-dark);
  letter-spacing: -0.02em;
}
.stat-strip__label {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--fs-400);
  color: var(--c-text-soft);
}

/* ---------- 16d. Process / "So funktioniert's" ---------- */
.process { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 720px) { .process { grid-template-columns: repeat(3, 1fr); gap: var(--sp-7); } }
.process__step { position: relative; padding-left: 64px; }
.process__step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: -4px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: #fff; background: var(--c-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.process__step h3 { margin-bottom: var(--sp-2); font-size: var(--fs-600); }
.process__step p { color: var(--c-text-soft); }

/* ---------- 16e. Partners / supporters chip list ---------- */
.partners {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  justify-content: center;
}
.partners__chip {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: var(--fs-300);
  color: var(--c-accent);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.partners__chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- 16f. Mini board avatars ---------- */
.board-mini { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: center; }
.board-mini figure { margin: 0; text-align: center; width: 96px; }
.board-mini img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.board-mini figcaption { margin-top: var(--sp-2); font-size: var(--fs-300); color: var(--c-text-soft); line-height: 1.3; }

/* ---------- 16g. FAQ (details/summary) ---------- */
.faq { display: grid; gap: var(--sp-3); }
.faq details {
  background: #fff;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.faq details[open] { border-color: var(--c-primary-soft); box-shadow: var(--shadow-md); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-500);
  color: var(--c-accent);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem; line-height: 1;
  color: var(--c-primary);
  transition: transform 0.18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: var(--sp-3) 0 0; color: var(--c-text-soft); }

/* ---------- 16h. Modern hover lift on cards ---------- */
.card, .news-card { transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.card:hover, .news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary-soft); }
a.card:hover { text-decoration: none; }

/* highlight key word like a marker pen, modern touch */
.highlight {
  background-image: linear-gradient(120deg, rgba(244, 210, 166, 0.6) 0%, rgba(244, 210, 166, 0.6) 100%);
  background-position: 0 88%;
  background-repeat: no-repeat;
  background-size: 100% 38%;
  padding: 0 0.1em;
}

/* ---------- 17. Print ---------- */
@media print {
  .site-header, .site-footer, .nav__toggle, .btn { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
