/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9a7a2e;
  --gold-pale: #f5edd8;
  --burgundy: #6b1a2a;
  --burgundy-dark: #4a0f1c;
  --burgundy-mid: #8b2035;
  --cream: #faf6ed;
  --cream-dark: #f0e8d5;
  --ink: #1a0f0a;
  --ink-mid: #3d2416;
  --stone: #8a7a6a;
  --stone-light: #c4b49a;
  --white: #fffef9;
  --font-display: "Cinzel Decorative", serif;
  --font-heading: "Cinzel", serif;
  --font-body: "EB Garamond", serif;
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.25);
  --shadow-deep: 0 8px 40px rgba(26, 15, 10, 0.35);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== ORNAMENT SVG ===== */
.ornament {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  margin: 0.5rem 0;
  opacity: 0.8;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.2rem 0;
}

.ornament-line::before,
.ornament-line::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.ornament-line span {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 15, 10, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background-color: transparent;
  overflow: hidden;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.nav-logo-sub {
  font-family: var(--font-body);
  color: var(--stone-light);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 2px;
  transition:
    color 0.25s,
    background 0.25s;
}

.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

.nav-lang {
  display: flex;
  gap: 0.4rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

.lang-btn {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  text-transform: uppercase;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(
      180deg,
      rgba(26, 15, 10, 0.75) 0%,
      rgba(74, 15, 28, 0.6) 60%,
      rgba(26, 15, 10, 0.85) 100%
    ),
    url("assets/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Byzantine pattern overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Decorative cross pattern */
#hero::after {
  content: "✦";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.15);
  }
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.4rem 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.2s forwards;
}

.hero-cross {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.4s forwards;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.6s forwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-cross {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.4s forwards;
}

.hero-cross img {
  width: min(210px, 28vw);
  max-width: 260px;
  height: auto;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeDown 0.8s 0.8s forwards;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(250, 246, 237, 0.8);
  max-width: 620px;
  margin: 0 auto 0.75rem;
  font-style: italic;
  opacity: 0;
  animation: fadeDown 0.8s 1s forwards;
}

.hero-source {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeDown 0.8s 1.05s forwards;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeDown 0.8s 1.2s forwards;
}

.clergy-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.clergy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(250, 246, 237, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: 28px;
  padding: 2rem;
}

.clergy-info {
  flex: 1;
  text-align: left;
}

.clergy-image {
  flex: 0 0 360px;
  display: flex;
  justify-content: center;
}

.clergy-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  object-fit: cover;
}

.clergy-card-text {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.9;
  padding: 0.5rem 0;
}

.clergy-card-text br {
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 860px) {
  .clergy-row {
    flex-direction: column;
    padding: 1.5rem;
  }

  .clergy-image {
    width: 100%;
  }
}

.btn-primary {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  border: none;
  padding: 1rem 2.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 1rem 2.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SECTION BASE ===== */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--burgundy-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-title.light {
  color: var(--gold-light);
}

/* ===== ABOUT ===== */
#about {
  background: var(--cream);
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold),
    var(--gold-dark),
    var(--gold),
    transparent
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(
    135deg,
    var(--burgundy-dark),
    var(--burgundy-mid)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.4);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(201, 168, 76, 0.03) 40px,
    rgba(201, 168, 76, 0.03) 42px
  );
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-img-frame::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: 12px;
  border: 1px solid var(--gold-dark);
  z-index: -1;
  opacity: 0.25;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--burgundy-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--ink-mid);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.fact-item {
  text-align: center;
  padding: 1.2rem;
  background: var(--cream-dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.fact-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.fact-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ===== SCHEDULE ===== */
#schedule {
  background: var(--burgundy-dark);
  position: relative;
  overflow: hidden;
}

#schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(139, 32, 53, 0.4) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(74, 15, 28, 0.6) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.schedule-card {
  max-width: 360px;
  margin: 0 auto;
  background: rgba(255, 254, 249, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.schedule-card:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.schedule-day {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.schedule-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.schedule-time {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.schedule-note {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--stone-light);
  font-size: 0.85rem;
}

/* ===== NEWS ===== */
#news {
  background: var(--cream-dark);
  position: relative;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(201, 168, 76, 0.35);
}

.news-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(
    135deg,
    var(--burgundy-dark),
    var(--burgundy-mid)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -10px;
  position: absolute;
  inset: 0;
}

/* Pascha (1st news item) - 45px up */
.news-card:first-child .news-img img {
  object-position: center -45px;
}

/* Catequesis (3rd news item) - 95px up */
.news-card:nth-child(3) .news-img img {
  object-position: center -95px;
}

/* Other news items (4th+) - 7px up */
.news-card:nth-child(n + 4) .news-img img {
  object-position: center -7px;
}

.news-body {
  padding: 1.5rem;
}

.news-date {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.news-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--burgundy-dark);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ===== CALENDAR ===== */
#calendar {
  background: var(--cream);
}

.calendar-graphic {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.calendar-graphic img {
  width: 100%;
  max-width: 860px;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: var(--shadow-gold);
}

.calendar-wrapper {
  display: none;
}

.calendar-header {
  background: var(--burgundy-dark);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-nav {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: var(--font-heading);
}

.cal-nav:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.cal-month-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  text-align: center;
}

.calendar-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(74, 15, 28, 0.3);
}

.cal-day-name {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 0.7rem 0.3rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  padding: 1px;
}

.cal-cell {
  background: var(--white);
  min-height: 80px;
  padding: 0.5rem;
  position: relative;
  transition: background 0.2s;
}

.cal-cell:hover {
  background: var(--cream);
}

.cal-cell.other-month .cal-date {
  opacity: 0.3;
}

.cal-cell.today {
  background: rgba(201, 168, 76, 0.06);
}

.cal-cell.today .cal-date {
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--ink-mid);
  margin-bottom: 0.3rem;
}

.cal-event {
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-style: italic;
  background: var(--burgundy-dark);
  color: var(--gold-light);
  padding: 1px 4px;
  border-radius: 2px;
  display: block;
  margin-bottom: 2px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--ink);
  padding: 6rem 0;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 4px;
  padding: 0 4px;
}

.gallery-item {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--ink-mid));
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.2);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 300px;
}
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: "✦";
  position: absolute;
  inset: 0;
  background: rgba(74, 15, 28, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ===== DONATION ===== */
#donate {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--ink) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#donate::before {
  content: "✦ ✦ ✦";
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(201, 168, 76, 0.15);
  font-size: 2rem;
  letter-spacing: 2rem;
}

.donate-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.donate-inner p {
  color: rgba(250, 246, 237, 0.75);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.donate-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.donate-amount {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.donate-amount:hover,
.donate-amount.active {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--cream-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--burgundy-dark);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--burgundy-dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail-text p {
  font-size: 0.95rem;
  color: var(--ink-mid);
}

.contact-map {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--cream-dark), var(--stone-light));
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--stone);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  flex: 1;
  min-width: 140px;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 0.8rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.3);
}

.social-btn:active {
  transform: translateY(0);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--burgundy-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--gold-dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: var(--stone);
  font-size: 0.9rem;
  font-style: italic;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--stone);
  text-decoration: none;
  font-style: italic;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
}

.footer-cross {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
}

/* ===== MODAL / LIGHTBOX ===== */
#modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 10, 0.96);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

#modal.visible {
  display: flex;
}

.modal-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-family: var(--font-heading);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-lang {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }
  .nav-links.open a {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .about-facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--burgundy-dark);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold-dark);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}
