/* ==========================================================
   Talitha Kum Thailand — Design System (Modern NGO)
   Clean, credible, content-first. TH/EN bilingual.
   ========================================================== */
:root {
  --plum: #cf6320;          /* primary brand — deep peach-orange */
  --plum-dark: #b06124;     /* dark accent — headings, footer (softened) */
  --plum-soft: #ffeede;     /* tinted surface */
  --coral: #c9401f;         /* urgent / report accent */
  --coral-soft: #fdeae2;
  --amber: #ffb06b;         /* warm CTA accent */
  --amber-dark: #e2762f;
  --amber-soft: #fff1e2;
  --cream: #fff7f0;         /* page background */
  --cream-dark: #f3d8bf;    /* borders / rules */
  --ink: #4a3627;
  --ink-soft: #7a6552;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 2px 10px rgba(226, 118, 47, 0.08);
  --shadow-lg: 0 14px 34px rgba(226, 118, 47, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans Thai', 'Anuphan', sans-serif;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--cream);
  letter-spacing: .004em;
}

h1, h2, h3, h4, h5 {
  font-family: 'Anuphan', 'IBM Plex Sans Thai', sans-serif;
  color: var(--plum-dark);
  line-height: 1.35;
  letter-spacing: -.015em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); }

::selection { background: var(--amber); color: var(--plum-dark); }

/* Language toggle: default Thai */
.en { display: none; }
body.lang-en .en { display: revert; }
body.lang-en .th { display: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--plum); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber-dark); outline-offset: 2px; border-radius: 4px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--plum-dark); color: rgba(255,255,255,.88);
  font-size: .82rem; font-family: 'Anuphan', sans-serif;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 7px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.topbar .dot { color: var(--amber); margin: 0 4px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(226,118,47,.12); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; max-width: 1200px; margin: 0 auto; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand-name {
  font-family: 'Anuphan', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--plum-dark); line-height: 1.2;
}
.brand-name small {
  display: block; font-weight: 500; font-size: .7rem; color: var(--ink-soft);
  letter-spacing: .06em; text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  text-decoration: none; color: var(--ink);
  font-family: 'Anuphan', sans-serif; font-size: .9rem; font-weight: 500;
  padding: 9px 11px; border-radius: 8px; transition: color .2s, background .2s;
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px;
  height: 2px; background: var(--amber); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.main-nav a:not(.nav-cta):hover { color: var(--plum); }
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--plum); font-weight: 700; }
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.nav-cta {
  background: var(--coral); color: #fff; font-weight: 600;
  margin-left: 10px; border-radius: 8px; padding: 9px 16px;
}
.main-nav a.nav-cta:hover { background: #a33418; }

.lang-btn {
  border: 1.5px solid var(--cream-dark); background: transparent; color: var(--ink-soft);
  font-family: 'Anuphan', sans-serif; font-weight: 700; font-size: .8rem;
  padding: 6px 12px; border-radius: 8px; cursor: pointer; margin-left: 8px;
  transition: all .2s;
}
.lang-btn:hover { border-color: var(--plum); color: var(--plum); }

/* Mobile-only language button (hidden on desktop; shown in header bar on small screens) */
.lang-btn--mobile { display: none; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--plum); line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-family: 'Anuphan', sans-serif;
  font-weight: 600; font-size: .95rem; padding: 13px 28px; border-radius: 10px;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-amber { background: var(--amber); color: var(--plum-dark); }
.btn-amber:hover { background: var(--amber-dark); color: #fff; }
.btn-outline { border: 1.5px solid rgba(255,255,255,.65); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-plum { background: var(--plum); color: #fff; }
.btn-plum:hover { background: var(--plum-dark); }
.btn-ghost { border: 1.5px solid var(--plum); color: var(--plum); }
.btn-ghost:hover { background: var(--plum-soft); }

/* ---------- Hero (home) ---------- */
.hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(255,224,199,.28), transparent 34%),
    linear-gradient(140deg, var(--plum-dark) 0%, #e2762f 62%, #f5904a 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto; padding: 92px 24px 96px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  border-radius: 99px; padding: 6px 16px; font-size: .82rem;
  font-family: 'Anuphan', sans-serif; letter-spacing: .04em; margin-bottom: 22px;
}
.hero .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #ffe0c7; }
.hero h1 {
  color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 700;
  margin-bottom: 18px; letter-spacing: -.03em;
}
.hero h1 .highlight { color: #ffe0c7; }
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.12rem); color: rgba(255,255,255,.86);
  max-width: 560px; margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
  border-radius: 18px; width: 100%; aspect-ratio: 4/3; object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.16);
}
.hero-media .hero-note {
  position: absolute; left: -18px; bottom: -18px;
  background: #fff; color: var(--ink); border-radius: 12px;
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  font-size: .82rem; line-height: 1.5; max-width: 250px;
  border-left: 4px solid var(--amber);
}
.hero-media .hero-note strong { color: var(--plum-dark); font-family: 'Anuphan', sans-serif; }

/* Hero slideshow */
.hero-slides { position: relative; aspect-ratio: 4/3; }
.hero-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { display: block; width: 100%; height: 100%; }
.hero-dots { display: flex; gap: 9px; justify-content: center; margin-top: 34px; }
.hero-dots button {
  width: 10px; height: 10px; padding: 0; border: none; cursor: pointer;
  border-radius: 50%; background: rgba(255,255,255,.45); transition: background .25s, transform .25s;
}
.hero-dots button:hover { background: rgba(255,255,255,.75); }
.hero-dots button.is-active { background: #ffe0c7; transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* ---------- Verse band ---------- */
.verse-band {
  background: var(--white); border-bottom: 1px solid var(--cream-dark);
  padding: 52px 24px; text-align: center;
}
.verse-band blockquote {
  font-family: 'Anuphan', sans-serif; font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 600; color: var(--plum); max-width: 720px; margin: 0 auto 8px;
}
.verse-band cite { color: var(--ink-soft); font-style: normal; font-size: .9rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--white); padding: 58px 0; border-bottom: 1px solid var(--cream-dark); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
.stat { text-align: left; padding: 4px 28px; border-left: 1px solid var(--cream-dark); }
.stat:first-child { border-left: none; }
.stat .num {
  font-family: 'Anuphan', sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.5rem); color: var(--plum); line-height: 1.15;
}
.stat .num .suffix { color: var(--amber-dark); }
.stat .label { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); }
.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker, .section-head .kicker {
  display: inline-block;
  color: var(--coral); font-family: 'Anuphan', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem;
}
.section-head h2 { font-size: clamp(1.55rem, 3.4vw, 2.15rem); margin: 10px 0 14px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s, border-color .22s;
}
.section.alt .card { background: var(--cream); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #ecc9a4; }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  background: var(--plum-soft); color: var(--plum); margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; }
.card .icon.amber { background: var(--amber-soft); color: var(--amber-dark); }
.card .icon.coral { background: var(--coral-soft); color: var(--coral); }
.card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .93rem; }
.card .card-link {
  display: inline-block; margin-top: 14px; font-family: 'Anuphan', sans-serif;
  font-weight: 600; font-size: .88rem; color: var(--plum); text-decoration: none;
}
.card .card-link:hover { color: var(--coral); }

.news-empty {
  text-align: center; color: var(--ink-soft); font-size: 1rem;
  padding: 56px 24px; background: var(--white);
  border: 1px dashed var(--cream-dark); border-radius: var(--radius);
}

/* ---------- News article (news-detail.html) ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article-back { margin-bottom: 18px; font-family: 'Anuphan', sans-serif; font-weight: 600; font-size: .9rem; }
.article-back a { text-decoration: none; }
.article .date {
  font-size: .78rem; color: var(--coral); font-family: 'Anuphan', sans-serif;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.article h1 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); margin: 10px 0 22px; letter-spacing: -.02em; }
.article-hero {
  width: 100%; border-radius: 16px; margin-bottom: 26px;
  border: 1px solid var(--cream-dark); box-shadow: var(--shadow-lg);
}
.article-body p { margin-bottom: 16px; font-size: 1.02rem; }
.article-gallery { margin: 26px 0 4px; }
.article-gallery img { height: 170px; cursor: zoom-in; }
.article-source { margin: 26px 0 4px; }

/* Share row (article) + card actions */
.share-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--cream-dark);
}
.share-label { font-family: 'Anuphan', sans-serif; font-weight: 700; font-size: .88rem; color: var(--plum-dark); }
.copy-link {
  font-family: 'Anuphan', sans-serif; font-weight: 600; font-size: .82rem;
  background: none; border: 1.5px solid var(--cream-dark); color: var(--ink-soft);
  padding: 6px 14px; border-radius: 8px; cursor: pointer; transition: all .2s;
}
.copy-link:hover { border-color: var(--plum); color: var(--plum); }
.copy-ok { font-size: .82rem; color: #2e7d47; font-weight: 600; display: none; }
.copy-ok.show { display: inline; }
.card-actions { display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.card-actions .card-link { margin-top: 0; }
.fb-share {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Anuphan', sans-serif; font-weight: 600; font-size: .82rem;
  color: #1877f2; text-decoration: none; cursor: pointer;
  background: none; border: none; padding: 0;
}
.fb-share svg { width: 16px; height: 16px; }
.fb-share:hover { color: #0d5dc7; }

/* ---------- Report strip ---------- */
.report-strip {
  background: var(--plum-dark); border: 1px solid var(--plum-dark);
  border-radius: 16px; padding: 38px 40px; color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; overflow: hidden;
}
.report-strip::before {
  content: ""; position: absolute; right: -60px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,107,.28), transparent 70%);
}
.report-strip h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.report-strip p { color: rgba(255,255,255,.82); font-size: .95rem; max-width: 560px; }
.hotline {
  background: #fff; color: var(--plum-dark); font-family: 'Anuphan', sans-serif;
  font-weight: 700; font-size: 1.9rem; padding: 14px 34px; border-radius: 12px;
  text-decoration: none; white-space: nowrap; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; transition: transform .2s;
}
.hotline:hover { transform: scale(1.03); }
.hotline small {
  display: block; font-size: .7rem; font-weight: 600; color: var(--ink-soft);
  letter-spacing: .02em;
}

/* ---------- Two-column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col img {
  border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%;
  object-fit: cover; border: 1px solid var(--cream-dark);
}
.two-col h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin: 8px 0 16px; }
.two-col p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Checklist ---------- */
.check-list { list-style: none; }
.check-list li { padding: 9px 0 9px 36px; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  width: 24px; height: 24px; border-radius: 8px; background: var(--plum-soft);
  color: var(--plum); font-weight: 700; display: flex; align-items: center;
  justify-content: center; font-size: .8rem;
}

/* ---------- Warning signs grid ---------- */
.signs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.sign-item {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--coral); border-radius: 10px;
  padding: 16px 18px; font-size: .92rem; box-shadow: var(--shadow);
}
.sign-item strong { display: block; color: var(--plum-dark); font-family: 'Anuphan', sans-serif; margin-bottom: 3px; }
.sign-item span { color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery a {
  border-radius: 10px; overflow: hidden; display: block;
  border: 1px solid var(--cream-dark); box-shadow: var(--shadow);
}
.gallery img { width: 100%; height: 180px; object-fit: cover; transition: transform .3s, opacity .3s; }
.gallery a:hover img { transform: scale(1.04); opacity: .92; }

/* ---------- News ---------- */
/* ข่าว: 3 การ์ดต่อแถว (จอใหญ่) → 2 → 1 ตามขนาดหน้าจอ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card .news-body { padding: 22px 24px 26px; }
.news-card .date {
  font-size: .76rem; color: var(--coral); font-family: 'Anuphan', sans-serif;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.news-card h3 { font-size: 1.06rem; margin: 8px 0 8px; }
.news-card p { font-size: .9rem; color: var(--ink-soft); }
.news-thumb {
  height: 185px; background: var(--plum-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum); border-bottom: 1px solid var(--cream-dark);
}
.news-thumb svg { width: 44px; height: 44px; opacity: .55; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--plum-dark), var(--plum));
  color: #fff; text-align: center; padding: 78px 24px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: -80px; bottom: -140px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,107,.25), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.05rem); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto 28px; position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.contact-card { text-align: center; }
.contact-card .icon { margin: 0 auto 16px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 90% 0%, rgba(255,224,199,.25), transparent 30%),
    linear-gradient(140deg, var(--plum-dark), #e2762f 70%);
  color: #fff; padding: 68px 24px 64px;
}
.page-hero .page-hero-inner { max-width: 1120px; margin: 0 auto; }
.page-hero .kicker { color: #ffe0c7; margin-bottom: 8px; }
.page-hero h1 { color: #fff; font-size: clamp(1.65rem, 3.8vw, 2.5rem); margin-bottom: 10px; letter-spacing: -.025em; }
.page-hero p { color: rgba(255,255,255,.84); max-width: 660px; }
.page-hero.center { text-align: center; }
.page-hero.center p { margin: 0 auto; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-size: 1.5rem; margin: 46px 0 14px; padding-top: 10px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
/* Infographic figure inside prose */
.info-figure { margin: 30px 0; }
.info-figure img {
  width: 100%; height: auto; border-radius: 14px;
  border: 1px solid var(--cream-dark); box-shadow: var(--shadow-lg);
  transition: transform .25s;
}
.info-figure a:hover img { transform: translateY(-2px); }
.info-figure figcaption {
  margin-top: 10px; font-size: .84rem; color: var(--ink-soft); line-height: 1.6;
}

.note {
  background: var(--amber-soft); border-left: 3px solid var(--amber);
  border-radius: 0 10px 10px 0; padding: 14px 20px; font-size: .9rem; color: #7a5230;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--plum-dark); color: rgba(255,255,255,.78); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 {
  color: #fff; font-size: .82rem; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .12em;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: #ffe0c7; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: .9rem; }
.footer-brand img { height: 52px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { font-size: .89rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  color: #fff; transition: background .2s, transform .2s, color .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); color: #ffe0c7; }
.footer-social svg { width: 20px; height: 20px; }
.footer-hotline {
  display: inline-block; margin-top: 6px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 10px 16px;
  font-family: 'Anuphan', sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px;
  text-align: center; font-size: .82rem; color: rgba(255,255,255,.5);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(58, 32, 14, .93); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.lightbox .close {
  position: absolute; top: 18px; right: 26px; font-size: 2.2rem; color: #fff;
  background: none; border: none; cursor: pointer;
}

/* ---------- Motion ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero .eyebrow  { animation: fadeUp .6s .05s ease-out both; }
.hero h1        { animation: fadeUp .7s .15s ease-out both; }
.hero p.lead    { animation: fadeUp .7s .28s ease-out both; }
.hero-actions   { animation: fadeUp .7s .4s ease-out both; }
.hero-media     { animation: fadeUp .8s .3s ease-out both; }
.page-hero h1, .page-hero .kicker { animation: fadeUp .6s .08s ease-out both; }
.page-hero p  { animation: fadeUp .6s .2s ease-out both; }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 14px 24px 20px; box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--cream-dark); gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav a.active { background: var(--plum-soft); border-radius: 8px; }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .lang-btn { margin: 10px 0 0; align-self: flex-start; }
  /* language switch always visible in the header bar on mobile (no need to open the menu) */
  .main-nav .lang-btn { display: none; }
  .lang-btn--mobile {
    display: inline-block; margin: 0 4px 0 auto;
    padding: 8px 16px; font-size: .85rem;
    background: var(--plum); color: #fff; border-color: var(--plum);
  }
  .lang-btn--mobile:hover { color: #fff; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 24px 80px; }
  .hero-media .hero-note { left: 12px; bottom: -14px; }
  .two-col { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 68px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .stat { border-left: none; padding: 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .report-strip { flex-direction: column; text-align: center; padding: 30px 24px; }
  .report-strip p { max-width: none; }
  .brand-name { font-size: .88rem; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar .topbar-left { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
