/* ─── Variables ─────────────────────────────────────────── */
:root {
  --primary:      #243D1E;
  --primary-hover:#1A2E14;
  --accent:       #C8923A;
  --cream:        #F5F1EA;
  --white:        #ffffff;
  --dark:         #1A2A17;
  --gray:         #5A6B56;
  --light-gray:   #DDD8CE;
  --radius:       4px;
  --shadow:       0 2px 8px rgba(0,0,0,.08);
  --shadow-hover: 0 6px 20px rgba(0,0,0,.14);
  --transition:   .2s ease;
}

/* ─── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }
address { font-style: normal; }

/* ─── Layout helpers ───────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  align-items: start;
}
.layout-article {
  max-width: 820px;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}
.brand-link:hover { text-decoration: none; color: inherit; }
.site-logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-name {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: .02em;
}
.brand-slogan {
  display: block;
  font-size: .75rem;
  opacity: .8;
  margin-top: 1px;
}

/* ─── Nav ───────────────────────────────────────────────── */
.main-nav { background: rgba(0,0,0,.18); }
.nav-list {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-item > a:hover,
.nav-item.active > a {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-item.active > a { border-bottom: 2px solid var(--accent); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-hover);
  list-style: none;
  min-width: 190px;
  z-index: 200;
}
.dropdown li a {
  display: block;
  padding: 9px 16px;
  color: var(--dark);
  font-size: .875rem;
  transition: background var(--transition);
}
.dropdown li a:hover { background: var(--cream); text-decoration: none; }
.nav-item.has-dropdown:hover .dropdown { display: block; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
}
.hero.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero:hover.has-image::before { transform: scale(1.03); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,23,.85) 0%, rgba(26,42,23,.35) 60%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 48px 40px;
  color: var(--white);
}
.hero-category {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.hero-title { font-family: Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 12px; }
.hero-title a { color: inherit; }
.hero-title a:hover { text-decoration: underline; }
.hero-excerpt { font-size: 1rem; opacity: .9; margin-bottom: 20px; max-width: 560px; }
.hero-meta { display: flex; align-items: center; gap: 20px; font-size: .875rem; opacity: .85; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-outline {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.15); text-decoration: none; color: var(--white); }

/* ─── Article Grid ──────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-img-link { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .card-img-link img { transform: scale(1.04); }
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: inline-block;
}
.card-category:hover { text-decoration: none; opacity: .8; }
.card-title { font-family: Georgia, serif; font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.card-title a { color: var(--dark); }
.card-title a:hover { color: var(--primary); text-decoration: none; }
.card-excerpt { font-size: .875rem; color: var(--gray); flex: 1; margin-bottom: 14px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.card-date { font-size: .75rem; color: var(--gray); }
.card-read-more { font-size: .8rem; font-weight: 600; color: var(--primary); }
.card-read-more:hover { text-decoration: none; color: var(--primary-hover); }

/* ─── Article List (category page) ─────────────────────── */
.article-list { display: flex; flex-direction: column; gap: 24px; }
.article-row {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.article-row:hover { box-shadow: var(--shadow-hover); }
.row-img-link {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  overflow: hidden;
  background: var(--light-gray);
}
.row-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-row:hover .row-img-link img { transform: scale(1.04); }
.row-body { padding: 18px 18px 18px 0; flex: 1; display: flex; flex-direction: column; }
.row-title { font-family: Georgia, serif; font-size: 1.1rem; margin-bottom: 8px; }
.row-title a { color: var(--dark); }
.row-title a:hover { color: var(--primary); text-decoration: none; }
.row-excerpt { font-size: .875rem; color: var(--gray); flex: 1; }
.row-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }

/* ─── Page Header ───────────────────────────────────────── */
.page-header { margin-bottom: 28px; }
.page-header h1 { font-family: Georgia, serif; font-size: 1.8rem; color: var(--dark); margin-top: 8px; }
.breadcrumb { font-size: .8rem; color: var(--gray); margin-bottom: 6px; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 4px; }
.sub-categories { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.sub-cat-link {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  color: var(--dark);
  transition: var(--transition);
}
.sub-cat-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); text-decoration: none; }

/* ─── Pagination ────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.page-link {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.page-link:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.page-info { font-size: .875rem; color: var(--gray); }

/* ─── Sidebar ───────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }
.widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; margin-bottom: 20px; }
.widget-title {
  font-family: Georgia, serif;
  font-size: .95rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 14px;
}
.category-tree { list-style: none; }
.category-tree > li { margin-bottom: 4px; }
.category-tree > li > a { font-size: .875rem; font-weight: 600; color: var(--dark); }
.category-tree > li > a:hover,
.category-tree > li > a.current { color: var(--primary); text-decoration: none; }
.category-tree ul { list-style: none; margin: 4px 0 4px 14px; }
.category-tree ul li a { font-size: .825rem; color: var(--gray); }
.category-tree ul li a:hover,
.category-tree ul li a.current { color: var(--primary); text-decoration: none; }
.contact-widget { font-size: .875rem; line-height: 1.8; }
.contact-widget p { margin-bottom: 4px; }

/* ─── Article Full ──────────────────────────────────────── */
.article-header { margin-bottom: 28px; }
.article-category-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.article-category-badge:hover { background: var(--primary-hover); text-decoration: none; color: var(--white); }
.article-title { font-family: Georgia, serif; font-size: 2rem; line-height: 1.3; margin-bottom: 10px; }
.article-meta { font-size: .85rem; color: var(--gray); }
.article-featured-img {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.article-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 1.0625rem; line-height: 1.8; color: var(--dark); }
.article-body h2, .article-body h3 { font-family: Georgia, serif; margin: 1.5em 0 .6em; }
.article-body p { margin-bottom: 1.2em; }
.article-body ul, .article-body ol { margin: 0 0 1.2em 1.5em; }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 1.5em 0;
  color: var(--gray);
  font-style: italic;
}
.article-body a { color: var(--primary); }
.article-body img { max-width: 100%; border-radius: var(--radius); margin: 1em 0; }

/* ─── Prev/Next ─────────────────────────────────────────── */
.prev-next {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--light-gray);
}
.prev-next-link {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 18px;
  flex: 1;
  max-width: 48%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prev-next-link:hover { border-color: var(--primary); text-decoration: none; }
.prev-next-next { text-align: right; }
.pn-label { font-size: .75rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.pn-title { font-size: .9rem; color: var(--dark); font-weight: 600; }

/* ─── Gallery Cards (mediji page) ──────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.gallery-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); text-decoration: none; }
.gallery-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover .gallery-card-img img { transform: scale(1.04); }
.gallery-card-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: .875rem; }
.gallery-count-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.gallery-card-body { padding: 14px 16px; }
.gallery-card-title { font-family: Georgia, serif; font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.gallery-card-desc { font-size: .825rem; color: var(--gray); margin-bottom: 6px; }
.gallery-card-date { font-size: .75rem; color: var(--gray); }

/* Gallery full page */
.gallery-grid-full { margin-bottom: 24px; }
.gallery-description { font-size: 1rem; color: var(--gray); margin-top: 8px; }
.gallery-meta { font-size: .85rem; color: var(--gray); margin-top: 6px; }
.gallery-back { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--light-gray); }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ─── Media Page ────────────────────────────────────────── */
.media-section { margin-bottom: 48px; }
.section-title { font-family: Georgia, serif; font-size: 1.25rem; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.image-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--light-gray);
}
.image-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.image-item:hover img { transform: scale(1.06); }

.document-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.document-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.doc-icon { font-size: 1.5rem; flex-shrink: 0; }
.doc-info { flex: 1; }
.doc-name { font-weight: 600; color: var(--dark); }
.doc-name:hover { color: var(--primary); }
.doc-meta { font-size: .8rem; color: var(--gray); display: block; margin-top: 2px; }

/* ─── Lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-img-wrap { max-width: 80vw; text-align: center; }
#lightbox-img { max-height: 80vh; max-width: 80vw; border-radius: var(--radius); }
.lightbox-caption { color: rgba(255,255,255,.7); font-size: .875rem; margin-top: 10px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 16px;
  opacity: .7;
  transition: opacity var(--transition);
}
.lightbox-close { position: absolute; top: 16px; right: 20px; font-size: 2.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  margin-top: auto;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-col h3 { font-family: Georgia, serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.footer-col h4 { font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 10px; }
.footer-col p { font-size: .875rem; line-height: 1.7; }
.footer-col address { font-size: .875rem; line-height: 1.9; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 5px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  max-width: 1160px;
  margin: 0 auto;
}

/* ─── Misc ──────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 0;
  color: var(--gray);
  font-size: 1rem;
}
.not-found { text-align: center; padding: 80px 20px; }
.not-found h1 { font-size: 6rem; color: var(--light-gray); font-family: Georgia, serif; }
.not-found p { font-size: 1.1rem; color: var(--gray); margin: 12px 0 24px; }
.btn-sm { padding: 5px 12px; font-size: .8rem; }

/* ─── Document links in article body ────────────────────── */
.article-body a[href$=".pdf"],
.article-body a[href$=".doc"],
.article-body a[href$=".docx"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 10px;
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.article-body a[href$=".pdf"]:hover,
.article-body a[href$=".doc"]:hover,
.article-body a[href$=".docx"]:hover {
  background: var(--light-gray);
  border-color: #c8bfb7;
  text-decoration: none;
}
.article-body a[href$=".pdf"]::before  { content: '📄'; font-style: normal; }
.article-body a[href$=".doc"]::before,
.article-body a[href$=".docx"]::before { content: '📝'; font-style: normal; }

/* ─── Donation page ─────────────────────────────────────── */
.donation-intro {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.donation-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin: 1.5rem 0;
}
.donation-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
}
.donation-row:last-child { border-bottom: none; }
.donation-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray);
}
.donation-value { color: var(--dark); }
.donation-mono {
  font-family: 'Courier New', monospace;
  font-size: .95rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── Gallery inline embed (in articles) ────────────────── */
.gallery-inline-embed {
  margin: 2rem 0;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.gallery-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--cream);
  border-bottom: 1px solid var(--light-gray);
}
.gallery-embed-title {
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
}
.gallery-embed-link {
  font-size: .8rem;
  color: var(--primary);
  white-space: nowrap;
}
.gallery-embed-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  padding: 2px;
}
.gallery-embed-thumbs .image-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  display: block;
}
.gallery-embed-thumbs .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-embed-thumbs .image-item:hover img { transform: scale(1.06); }

/* ─── Header accent bar ─────────────────────────────────── */
.site-header { border-top: 3px solid var(--accent); }

/* ─── Site Hero (homepage identity) ─────────────────────── */
.site-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark) url('/assets/images/hero.jpg') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,42,23,.55) 0%, rgba(26,42,23,.80) 100%);
}
.site-hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(200,146,58,.65);
  margin-bottom: 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.site-hero-title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: bold;
  letter-spacing: .01em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.site-hero-sub {
  font-size: clamp(.875rem, 2vw, 1.125rem);
  opacity: .85;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.site-hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: var(--white);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  animation: hero-bounce 2.4s ease-in-out infinite;
}
.site-hero-arrow:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ─── Interior page band (sub-page title header) ─────────── */
.page-band {
  background: var(--primary);
  padding: 44px 0 40px;
  border-bottom: 3px solid var(--accent);
}
.page-band .breadcrumb { color: rgba(255,255,255,.55); margin-bottom: 10px; }
.page-band .breadcrumb a { color: rgba(255,255,255,.55); }
.page-band .breadcrumb a:hover { color: var(--white); text-decoration: none; }
.page-band .breadcrumb span { color: rgba(255,255,255,.4); }
.page-band h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.page-band-desc { font-size: 1rem; color: rgba(255,255,255,.72); margin-top: 10px; line-height: 1.6; }
.page-band-meta { font-size: .875rem; color: rgba(255,255,255,.58); margin-top: 8px; }
.page-band-sub { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.page-band-sub a {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.page-band-sub a:hover { background: rgba(255,255,255,.22); text-decoration: none; color: var(--white); }

/* article-category-badge inside page-band */
.page-band .article-category-badge {
  background: var(--accent);
  color: var(--dark);
  margin-bottom: 14px;
}
.page-band .article-category-badge:hover { background: rgba(200,146,58,.85); color: var(--dark); }
.page-band .article-meta { color: rgba(255,255,255,.58); margin-top: 10px; }

/* ─── Featured section ───────────────────────────────────── */
.featured-section {
  padding: 72px 0;
  background: var(--white);
}
.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.featured-img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.featured-img:hover img { transform: scale(1.04); }
.featured-title {
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: bold;
  line-height: 1.25;
  margin: 10px 0 16px;
}
.featured-title a { color: var(--dark); }
.featured-title a:hover { color: var(--primary); text-decoration: none; }
.featured-excerpt { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.featured-meta { display: flex; align-items: center; justify-content: space-between; }
.read-more-link { font-size: .875rem; font-weight: 700; color: var(--primary); letter-spacing: .02em; }
.read-more-link:hover { color: var(--primary-hover); text-decoration: none; }

/* ─── Editorial grid section ─────────────────────────────── */
.editorial-section {
  padding: 72px 0 80px;
  background: var(--cream);
}
.editorial-header { margin-bottom: 36px; }
.editorial-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 14px;
}
.editorial-title::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.editorial-lead {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.editorial-lead:hover { box-shadow: var(--shadow-hover); }
.editorial-lead-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.editorial-lead-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.editorial-lead:hover .editorial-lead-img img { transform: scale(1.03); }
.editorial-lead-body { padding: 24px 28px 28px; }
.editorial-lead-title {
  font-family: Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 8px 0 14px;
}
.editorial-lead-title a { color: var(--dark); }
.editorial-lead-title a:hover { color: var(--primary); text-decoration: none; }
.editorial-lead-excerpt { font-size: .9375rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.editorial-support {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.editorial-support-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.editorial-support-item:hover { box-shadow: var(--shadow-hover); }
.support-img {
  display: block;
  aspect-ratio: 16/8;
  overflow: hidden;
}
.support-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.editorial-support-item:hover .support-img img { transform: scale(1.04); }
.support-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.support-title {
  font-family: Georgia, serif;
  font-size: .975rem;
  font-weight: 700;
  line-height: 1.35;
}
.support-title a { color: var(--dark); }
.support-title a:hover { color: var(--primary); text-decoration: none; }
.more-grid { margin-top: 0; }

/* ─── Galleries preview (home page) ─────────────────────── */
.galleries-preview .section-more-link { text-align: center; margin-top: 32px; }

/* ─── Stats section (home page) ─────────────────────────── */
.stats-section {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 16px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.stat-number {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray);
  font-weight: 600;
}

/* ─── About strip (home page) ───────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.about-strip-img {
  position: relative;
  overflow: hidden;
}
.about-strip-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-strip-content {
  background: var(--dark);
  padding: 72px 64px;
  display: flex;
  align-items: center;
}
.about-strip-body {
  position: relative;
  max-width: 480px;
}
.about-strip-quote {
  position: absolute;
  top: -8px;
  right: 0;
  width: 72px;
  height: 54px;
  color: rgba(200,146,58,.12);
  pointer-events: none;
}
.about-strip-badge {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: .8rem;
  color: var(--accent);
  border: 1px solid rgba(200,146,58,.45);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.about-strip-title {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}
.about-strip-text {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ─── Donate CTA (home page) ─────────────────────────────── */
.donate-cta {
  background: var(--accent);
  padding: 80px 0;
}
.donate-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.donate-cta-eyebrow {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(26,42,23,.6);
  font-weight: 700;
  margin-bottom: 10px;
}
.donate-cta-title {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.donate-cta-sub {
  color: rgba(26,42,23,.72);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 480px;
}
.donate-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.donate-cta-btn {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 18px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.donate-cta-btn:hover { background: var(--primary); color: var(--white); text-decoration: none; }

/* ─── Footer brand ───────────────────────────────────────── */
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  opacity: .82;
}
.footer-org-name {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: bold;
  line-height: 1.3;
}
.footer-slogan { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ─── Article page improvements ──────────────────────────── */
.article-title { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.layout-article { max-width: 860px; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .featured-article { grid-template-columns: 1fr; gap: 28px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-support { flex-direction: row; }
  .editorial-support-item { flex: 1; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 8px 0; }
  .nav-item > a { padding: 12px 20px; }
  .dropdown { position: static; border: none; box-shadow: none; background: rgba(0,0,0,.15); }
  .dropdown li a { padding-left: 36px; color: rgba(255,255,255,.8); }
  .article-grid { grid-template-columns: 1fr; }
  .article-row { flex-direction: column; }
  .row-img-link { width: 100%; height: 180px; }
  .row-body { padding: 16px; }
  .hero { min-height: 320px; }
  .hero-inner { padding: 24px 20px; }
  .hero-title { font-size: 1.4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .article-title { font-size: 1.5rem; }
  .prev-next { flex-direction: column; }
  .prev-next-link { max-width: 100%; }
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-embed-thumbs { grid-template-columns: repeat(3, 1fr); }
  .donation-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 16px; }
  .donation-label { font-size: .75rem; }
  .site-hero-logo { width: 90px; height: 90px; }
  .site-hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .featured-section, .editorial-section { padding: 48px 0; }
  .page-band { padding: 32px 0 28px; }
  .editorial-support { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-section { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { min-height: 260px; position: relative; }
  .about-strip-content { padding: 48px 24px; }
  .about-strip-quote { display: none; }
  .donate-cta { padding: 48px 0; }
  .donate-cta-inner { flex-direction: column; text-align: center; gap: 28px; }
  .donate-cta-sub { max-width: 100%; }
  .donate-cta-action { width: 100%; }
  .donate-cta-btn { width: 100%; text-align: center; }
}
