/* ===================================================================
   Temple Website - Public site theme (gold & maroon)
   =================================================================== */

:root {
  --maroon-darkest: #3a0a0a;
  --maroon-dark: #4a0d0d;
  --maroon: #7a1414;
  --maroon-light: #9c2626;
  --gold: #c99b3f;
  --gold-bright: #e8c368;
  --gold-light: #f5deA0;
  --cream: #fff8ec;
  --cream-dark: #f4e9d4;
  --ink: #2a1a10;
  --ink-soft: #5a4632;
  --success: #2f7d4f;
  --danger: #b3261e;

  --shadow-soft: 0 4px 18px rgba(74, 13, 13, 0.12);
  --shadow-strong: 0 10px 30px rgba(58, 10, 10, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: 'Cormorant Garamond', 'Cochin', Georgia, serif;
  --font-body: 'Work Sans', 'Segoe UI', Tahoma, sans-serif;

  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.35rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--ink-soft);
}

.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 10px auto 0;
  color: var(--gold);
  opacity: 0.85;
}
.divider-motif::before,
.divider-motif::after {
  content: '';
  height: 1px;
  width: 46px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--maroon-darkest);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { box-shadow: var(--shadow-strong); filter: brightness(1.04); }

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(232, 195, 104, 0.15); }

.btn-maroon {
  background: var(--maroon);
  color: var(--cream);
}
.btn-maroon:hover { background: var(--maroon-dark); }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--maroon-darkest);
  border-bottom: 3px solid var(--gold);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  min-width: 0;
}
.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  object-fit: cover;
  background: var(--maroon-dark);
}
.navbar-brand .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-brand .tagline {
  display: block;
  font-size: 0.72rem;
  color: var(--cream-dark);
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--cream-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(232, 195, 104, 0.15);
  color: var(--gold-light);
}
.nav-links .btn { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px 10px;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--maroon-darkest);
    border-bottom: 3px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 20px;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { padding: 13px 14px; }
  .nav-links .btn { margin-left: 0; margin-top: 6px; }
  .nav-toggle { display: block; }
  .navbar-brand .tagline { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--cream);
  background: var(--maroon-dark);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-bg-zoom {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,10,10,0.42) 0%, rgba(58,10,10,0.88) 100%);
  z-index: 1;
}
.hero::after {
  /* thin gold frame line, inset from the edge, for a temple-signage feel */
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(232, 195, 104, 0.35);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 20px 76px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--cream);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: heroFadeUp 0.85s ease 0.15s forwards;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--cream-dark);
  max-width: 560px;
  margin: 0 auto 6px;
  opacity: 0;
  animation: heroFadeUp 0.85s ease 0.35s forwards;
}
.hero-location {
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  opacity: 0;
  animation: heroFadeUp 0.85s ease 0.5s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: heroFadeUp 0.85s ease 0.62s forwards;
}
.hero-divider span:not(.hero-divider-dot) {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-divider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(232, 195, 104, 0.2);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
  opacity: 0;
  animation: heroFadeUp 0.85s ease 0.78s forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-zoom { animation: none; }
  .hero h1, .hero p.lead, .hero-location, .hero-divider, .hero-actions {
    animation: none;
    opacity: 1;
  }
}

/* ---------- Progress bar ---------- */
.progress-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  max-width: 720px;
  margin: -64px auto 0;
  position: relative;
  z-index: 5;
}
.progress-card .figures {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.progress-card .raised {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--maroon);
}
.progress-card .target {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.progress-track {
  height: 16px;
  background: var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(122, 20, 20, 0.15);
}
.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.6s ease;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 6px;
}

/* ---------- Countdown ---------- */
.countdown-card {
  text-align: center;
}
.countdown-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.countdown-unit {
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(232, 195, 104, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 84px;
}
.countdown-unit .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold-bright);
  display: block;
}
.countdown-unit .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dark);
}

/* ---------- Announcements ---------- */
.announcement-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.announcement-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 18px 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.announcement-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}
.announcement-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.announcement-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201, 155, 63, 0.2);
}
.announcement-title {
  font-weight: 700;
  color: var(--maroon-dark);
  font-size: 1.04rem;
}
.announcement-preview,
.announcement-full {
  color: var(--ink-soft);
  margin: 0;
}
.announcement-full {
  animation: announcementFadeIn 0.25s ease;
}
@keyframes announcementFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.announcement-toggle-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  background: none;
  border: none;
  padding: 0;
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
}
.announcement-toggle-link:hover { color: var(--gold); }
.announcement-toggle-link .chev { transition: transform 0.2s ease; display: inline-block; }
.announcement-card.expanded .announcement-toggle-link .chev { transform: rotate(180deg); }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}
.card-body { padding: 20px; }

/* ---------- Leaderboard ---------- */
.leaderboard-card {
  background: var(--maroon-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-strong);
}
.leaderboard-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leaderboard-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 248, 236, 0.06);
  border: 1px solid rgba(232, 195, 104, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.leaderboard-rank {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-darkest);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.leaderboard-list li:nth-child(1) .leaderboard-rank { background: var(--gold-bright); box-shadow: 0 0 0 3px rgba(232,195,104,0.25); }
.leaderboard-name {
  flex: 1;
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.leaderboard-amount {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-light);
}
.leaderboard-empty {
  text-align: center;
  color: var(--cream-dark);
  opacity: 0.8;
  padding: 18px 0;
}

/* ---------- Bank / UPI card ---------- */
.pay-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  margin: 0;
}
.pay-details dt { color: var(--ink-soft); font-size: 0.85rem; }
.pay-details dd { margin: 0; font-weight: 700; }
.copy-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.copy-btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--maroon);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.75rem;
  cursor: pointer;
  font-weight: 700;
}
.copy-btn:hover { background: var(--cream-dark); }
.qr-wrap {
  text-align: center;
}
.qr-wrap img {
  width: 180px;
  height: 180px;
  margin: 0 auto 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
}

/* ---------- Gallery ---------- */
.year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.year-tabs a {
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--maroon);
  color: var(--maroon);
  font-weight: 700;
}
.year-tabs a.active,
.year-tabs a:hover {
  background: var(--maroon);
  color: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  background: var(--maroon-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover .caption { opacity: 1; }
.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--ink-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 6, 6, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-strong);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: var(--gold-light);
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream-dark);
}

/* ---------- Timeline (history) ---------- */
.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--cream-dark));
}
.timeline li {
  position: relative;
  padding-left: 96px;
  margin-bottom: 30px;
}
.timeline .year-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  text-align: right;
  padding-right: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--maroon);
  font-size: 1.1rem;
}
.timeline .year-badge::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-photo {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 4px 0 14px;
  box-shadow: var(--shadow-soft);
  border: 3px solid #fff;
  outline: 1px solid var(--cream-dark);
}
@media (max-width: 600px) {
  .timeline::before { left: 8px; }
  .timeline li { padding-left: 36px; }
  .timeline .year-badge { position: static; width: auto; text-align: left; padding-right: 0; margin-bottom: 4px; }
  .timeline .year-badge::after { left: -32px; right: auto; top: 4px; }
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--ink);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 155, 63, 0.25);
}
textarea { resize: vertical; min-height: 100px; }
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-row input { width: auto; }
.checkbox-row label { margin: 0; font-weight: 500; }

.amount-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.amount-chip {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.amount-chip.selected,
.amount-chip:hover {
  background: var(--maroon);
  color: var(--cream);
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--cream-dark);
  margin-bottom: 26px;
}
.tab-btn {
  padding: 12px 20px;
  font-weight: 700;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  background: none;
  border-left: none; border-right: none; border-top: none;
  font-family: var(--font-body);
  font-size: 1rem;
}
.tab-btn.active { color: var(--maroon); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* alert / flash */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-weight: 600;
}
.alert-success { background: #e6f4ea; color: var(--success); border: 1px solid #bfe3cc; }
.alert-error { background: #fbe9e7; color: var(--danger); border: 1px solid #f2c2bd; }

/* ---------- Footer ---------- */
footer {
  background: var(--maroon-darkest);
  color: var(--cream-dark);
  padding: 50px 0 26px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
footer h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 14px; }
footer a { color: var(--cream-dark); opacity: 0.9; }
footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(232, 195, 104, 0.25);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  opacity: 0.85;
}
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Floating action buttons ---------- */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-strong);
  transition: transform 0.15s ease;
}
.fab:hover { transform: translateY(-2px); }
.fab-donate {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--maroon-darkest);
}
.fab-whatsapp {
  background: #25d366;
  color: #fff;
}
@media (max-width: 480px) {
  .fab-stack { right: 12px; bottom: 12px; }
  .fab span.fab-label { display: none; }
  .fab { padding: 14px; }
}

/* ---------- misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-soft); }
.tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--maroon);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--maroon-darkest);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }
