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

:root {
  --gold: #BA8B4B;
  --gold-light: #D4A96A;
  --dark: #0D0D0D;
  --dark-navy: #0A1628;
  --maroon: #6B1A23;
  --red: #99221D;
  --white: #F5F0E8;
  --gray: #888;
}

body {
  background: var(--dark);
  font-family: 'PT Sans', sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: 'PT Serif', serif; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── TOP BAR ── */
.topbar {
  background: #080808;
  height: 64px;
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-logo {
  display: none;
  flex-shrink: 0;
}
.topbar-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.topbar-divider {
  width: 1px;
  height: 26px;
  background: rgba(186,139,75,0.3);
  flex-shrink: 0;
}

.hymn-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 10px 16px;
  color: var(--gold);
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
  white-space: nowrap;
}
.hymn-btn:hover { background: var(--gold); color: #000; }
.hymn-btn.playing { background: var(--gold); color: #000; }
.hymn-btn.playing .play-icon { animation: pulse 1s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.7; }
}

.play-icon {
  width: 18px; height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.play-icon::after {
  content: '';
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
  transition: all 0.2s;
}
.hymn-btn.playing .play-icon::after {
  border: none;
  width: 7px;
  height: 7px;
  background: currentColor;
  margin-left: 0;
  border-radius: 1px;
}

.social-icons { display: flex; gap: 10px; }
.navbar-social-icons { display: none; }
.social-icons a {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover { background: var(--gold); color: #000; opacity: 1; }

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: #aaa;
}
.contact-info span { display: flex; align-items: center; gap: 7px; }
.contact-info a { color: #aaa; transition: color .2s; }
.contact-info a:hover { color: var(--gold); }

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #aaa;
  transition: color .2s;
  white-space: nowrap;
}
.topbar-phone:hover { color: var(--gold); }

.donate-btn {
  background: linear-gradient(to bottom, #b82a25, #99221D);
  border-top: 1px solid rgba(255,120,100,0.35);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.donate-btn:hover { background: linear-gradient(to bottom, #e8060e, #c90309); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 80vh;
  background: #080808 top right/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-content {}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s ease both;
}

.logo-img {
  width: 310px;
  height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(186,139,75,0.35));
}

.hero-headline-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-headline {
  font-family: 'PT Serif', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeUp 0.8s 0.15s ease both;
  background: linear-gradient(135deg, #7a5520 0%, #BA8B4B 35%, #e8c97a 55%, #BA8B4B 75%, #8a6030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 22px;
  color: #bbb;
  line-height: normal;
  max-width: 450px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-quote {
  padding-bottom: 20px;
  position: relative;
  animation: fadeUp 0.8s 0.35s ease both;
}

/* ── MOBILE HERO ── */
.hero-content-mobile { display: none; }
.hero-quote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 2px;
  background: var(--red);
}
.hero-quote p {
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 22px;
  line-height: normal;
  color: #ccc;
}
.hero-quote .accent-red  { color: var(--red); }
.hero-quote .accent-gold { color: var(--red); }

/* ── NAV BAR ── */
.navbar {
  background: #0a0a0a;
  border-top: 1px solid rgba(186,139,75,0.5);
  border-bottom: 1px solid rgba(186,139,75,0.5);
  height: 58px;
  overflow-x: auto;
}
.navbar::-webkit-scrollbar { display: none; }

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  /* allow overflow scroll for many items */
  min-width: max-content;
}

.navbar ul {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 13px;
}
.navbar ul li { height: 100%; display: flex; align-items: center; }
.navbar ul li a {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #bbb;
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.navbar ul li a:hover {
  background: rgba(186,139,75,0.15);
  color: #ddd;
}
.navbar ul li.current-menu-item > a,
.navbar ul li.current_page_item > a {
  background: var(--gold);
  color: #000;
}

/* ── INNER PAGE CONTENT ── */
.site-content {
  min-height: 60vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ── FOOTER ── */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(186,139,75,0.2);
  font-size: 16px;
  color: #999;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.footer-logo { max-height: 160px; width: auto; margin-bottom: 16px; }
.footer-brand-name { font-family: 'PT Serif', serif; font-size: 22px; color: var(--gold); display: block; margin-bottom: 10px; }
.footer-tagline { font-size: 15px; color: #666; line-height: 1.7; max-width: 280px; }

.footer-nav-col h4,
.footer-contact-col h4,
.footer-donate-col h4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul li a { font-size: 15px; color: #777; transition: color .2s; }
.footer-nav ul li a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.footer-contact-list a { color: #999; transition: color .2s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: #000; }

.footer-donate-col p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.footer-donate-col .donate-btn { display: inline-flex; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #555;
  letter-spacing: .5px;
}

/* ── SINGLE POST ── */
main.single-post {
  padding: 60px 0 80px;
}

.single-article {
  max-width: 820px;
}

.single-header {
  margin-bottom: 36px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.single-date {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.single-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 3px 10px;
  border-radius: 2px;
}

.single-title {
  font-family: 'PT Serif', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}

.single-excerpt {
  font-size: 18px;
  color: #999;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.single-thumbnail {
  margin-bottom: 44px;
  border-radius: 4px;
  overflow: hidden;
}
.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  font-size: 17px;
  line-height: 1.8;
  color: #ccc;
}
.single-content h2,
.single-content h3,
.single-content h4 {
  font-family: 'PT Serif', serif;
  color: var(--white);
  margin: 2em 0 0.6em;
}
.single-content h2 { font-size: 26px; }
.single-content h3 { font-size: 22px; }
.single-content p  { margin-bottom: 1.4em; }
.single-content a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.single-content a:hover { color: var(--gold-light); }
.single-content ul,
.single-content ol  { padding-left: 24px; margin-bottom: 1.4em; }
.single-content ul  { list-style: disc; }
.single-content ol  { list-style: decimal; }
.single-content li  { margin-bottom: 0.4em; }
.single-content blockquote {
  border-left: 3px solid var(--red);
  margin: 2em 0;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 19px;
  color: #bbb;
}
.single-content img {
  border-radius: 4px;
  margin: 1.5em 0;
}

.single-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(186,139,75,0.2);
}

.single-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.single-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 48%;
  transition: opacity 0.2s;
}
.single-nav-link:hover { opacity: 0.75; }
.single-nav-next { text-align: right; margin-left: auto; }

.single-nav-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.single-nav-title {
  font-family: 'PT Serif', serif;
  font-size: 15px;
  color: #ccc;
  line-height: 1.4;
}

/* ── ARCHIVE ── */
.archive-page {
  padding: 60px 0 80px;
}

.archive-header {
  margin-bottom: 48px;
}

.archive-description {
  font-size: 15px;
  color: #777;
  margin-top: 12px;
  max-width: 600px;
}

.archive-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.archive-cat-link {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(186,139,75,0.4);
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.archive-cat-link:hover,
.archive-cat-link.is-active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.archive-empty {
  color: #666;
  font-size: 16px;
  padding: 40px 0;
}

.archive-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.archive-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(186,139,75,0.3);
  border-radius: 3px;
  font-size: 13px;
  font-family: 'PT Sans', sans-serif;
  color: #999;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.archive-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #555;
}

/* ── MATCHES BLOCK ── */
.block-matches {
  background: var(--dark);
}

.matches-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}

.match-card {
  background: #111;
  border: 1px solid rgba(186,139,75,0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.match-card--next {
  border-color: rgba(186,139,75,0.35);
}

.match-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}

.match-label {
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.match-competition {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
  text-align: right;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  gap: 16px;
  flex: 1;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.match-team-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-team-logo img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
}

.match-logo-placeholder {
  width: 72px;
  height: 72px;
  background: #1e1e1e;
  border-radius: 50%;
  border: 1px solid rgba(186,139,75,0.15);
}

.match-team-name {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}

.match-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.match-vs-text {
  font-family: 'PT Serif', serif;
  font-size: 13px;
  font-weight: 700;
  color: #444;
  letter-spacing: 2px;
}

.match-result {
  font-family: 'PT Serif', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.match-card-bottom {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.match-date {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #888;
}

.match-location-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.match-location-badge--domaca   { background: rgba(186,139,75,0.15); color: var(--gold); }
.match-location-badge--gostujuca { background: rgba(153,34,29,0.15);  color: var(--red); }

@media (max-width: 600px) {
  .matches-grid { grid-template-columns: 1fr; }
}

/* ── TEAM BLOCK ── */
.block-team {
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Grid layout */
.team-grid > div { animation: fadeUp 0.8s ease both; }

/* Carousel layout */
.team-carousel-wrap {
  position: relative;
  padding: 0 68px;
}

.team-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.team-carousel::-webkit-scrollbar { display: none; }

.team-carousel .team-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .team-carousel .team-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 768px) {
  .team-carousel .team-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .team-carousel .team-card { flex: 0 0 calc(75% - 10px); }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(186,139,75,0.5);
  border-radius: 4px;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 2;
}
.carousel-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }

.team-card {
  background: #111;
  border: 1px solid rgba(186,139,75,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: rgba(186,139,75,0.45); }

.team-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1a1a1a;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s;
}
.team-card:hover .team-card-img { transform: scale(1.04); }

.team-card-placeholder {
  width: 100%;
  height: 100%;
  background: #1e1e1e;
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 40%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.team-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px 20px;
  z-index: 2;
  text-align: center;
}

.team-card-name {
  font-family: 'PT Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.2;
}

.team-card-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0;
}

.team-card-stats li {
  display: flex;
  align-items: center;
  font-size: 11px;
}

.team-card-stats li + li::before {
  content: '|';
  color: rgba(255,255,255,0.3);
  padding: 0 8px;
}

.stat-value {
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ── LATEST NEWS BLOCK ── */
.block-latest-news {
  background: var(--dark);
}

.block-header {
  margin-bottom: 48px;
}

.block-title {
  font-family: 'PT Serif', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.block-title-line {
  width: 60px;
  height: 3px;
  background: var(--red);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.news-card {
  background: #111;
  border: 1px solid rgba(186,139,75,0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  opacity: 0;
  transform: translateY(22px);
}
.news-card.is-visible { animation: fadeUp 0.8s ease both; }
.news-card.is-visible:nth-child(3n+1) { animation-delay: 0s; }
.news-card.is-visible:nth-child(3n+2) { animation-delay: 0.1s; }
.news-card.is-visible:nth-child(3n+3) { animation-delay: 0.2s; }
.news-card:hover { border-color: rgba(186,139,75,0.45); }

.news-card-img-wrap { position: relative; display: block; overflow: hidden; aspect-ratio: 16/9; }
.news-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.news-card-img-wrap:hover .news-card-img { transform: scale(1.04); }

.news-card-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}

.news-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-date {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-card-title {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}
.news-card-title a { color: var(--white); transition: color 0.2s; }
.news-card-title a:hover { color: var(--gold); }

.news-card-excerpt {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.news-card-link {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold);
  transition: color 0.2s;
}
.news-card-link:hover { color: var(--gold-light); }

.news-footer { text-align: center; }

.news-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 12px 32px;
  color: var(--gold);
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.news-all-btn:hover { background: var(--gold); color: #000; }

@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE MENU TOGGLE ── */
.hymn-label-mobile { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(186,139,75,0.5);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .menu-toggle { display: flex; width: 36px; height: 36px; }
  .menu-toggle span { width: 16px; }
  .hymn-label-desktop { display: none; }
  .hymn-label-mobile { display: inline; }
  .topbar-logo { display: flex; }
  .topbar .container { gap: 10px; }
  .hymn-btn { height: 36px; padding: 0 12px; font-size: 11px; gap: 7px; }
  .play-icon { width: 16px; height: 16px; }
  .donate-btn { height: 36px; padding: 0 12px; font-size: 13px; gap: 6px; margin-left: auto; margin-right: 10px; }
  .topbar .social-icons { display: none; }
  .navbar-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(186,139,75,0.2);
    margin-top: 6px;
  }
  .navbar-social-icons a {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
  }
  .navbar-social-icons a:hover { background: var(--gold); color: #000; }

  .navbar {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 200;
    height: auto;
    overflow: visible;
    border-bottom: 1px solid rgba(186,139,75,0.5);
  }
  .navbar.is-open { display: block; }

  .navbar .container {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    min-width: 0;
  }

  .navbar ul {
    flex-direction: column;
    height: auto;
    width: 100%;
    gap: 6px;
  }

  .navbar ul li {
    height: auto;
    width: 100%;
  }

  .navbar ul li a {
    justify-content: center;
    height: 44px;
    width: 100%;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero { min-height: 60vh; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%); }
  .contact-info { display: none; }
  .topbar-divider { display: none; }

  .hero-content { display: none; }

  .hero-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hero-mobile-headline {
    font-family: 'PT Serif', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #7a5520 0%, #BA8B4B 35%, #e8c97a 55%, #BA8B4B 75%, #8a6030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-mobile-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-mobile-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 24px rgba(186,139,75,0.35));
  }
  .hero-mobile-sub {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.5;
  }
  .hero-mobile-quote p {
    font-family: 'PT Serif', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
  }
  .hero-mobile-quote .accent-red { color: var(--red); }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-logo { margin: 0 auto 16px; }
  .footer-tagline { max-width: 100%; }
  .footer-nav ul,
  .footer-contact-list { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-donate-col .donate-btn { margin: 0 auto; }
  .topbar { height: auto; }
  .topbar .container { flex-wrap: wrap; height: auto; padding-top: 8px; padding-bottom: 8px; gap: 8px; }
}
