/* ============================================================
   Sts. Cyril and Methody Cathedral - Main Stylesheet
   Bulgarian Orthodox Traditional Color Scheme
   ============================================================ */

/* ============================================================
   ORTHODOX HEADING FONTS
   All scripts (Latin + Cyrillic) → Cormorant Garamond.
   Replaced the decorative Uncial Antiqua / Monomakh pair,
   which was hard to read.
   ============================================================ */
@font-face {
  font-family: 'Orthodox';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_v86GnM.ttf') format('truetype');
}
@font-face {
  font-family: 'Orthodox';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_iE9GnM.ttf') format('truetype');
}
@font-face {
  font-family: 'Orthodox';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cormorantgaramond/v21/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_hg9GnM.ttf') format('truetype');
}

/* Open Sans + PT Serif remain on Google Fonts CDN */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,400&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary-gold:   #C9A646;   /* warmer, more antique gold */
  --orthodox-blue:  #003893;   /* reserved ONLY for calendar "today" marker */
  --bulgarian-red:  #D62612;
  --white:          #FFFFFF;
  --cream:          #FAF7F2;
  --dark-text:      #4A2415;   /* warm dark brown — replaces cold navy */
  --warm-brown:     #4A2415;   /* alias for section headings, accents */
  --light-gold:     #F0E3C0;
  --shadow:         rgba(74, 36, 21, 0.10);   /* warm brown shadow */
  --gold-light:     rgba(201, 166, 70, 0.15);
  --blue-light:     rgba(44, 24, 16, 0.06);   /* warm shadow (was blue) */
  --transition:     0.3s ease;
  --radius:         8px;
  --radius-lg:      12px;
  --max-width:      1200px;
  --nav-height:     56px;
}

/* ============================================================
   TOP INFO BAR  (phone / email / address / social icons)
   ============================================================ */
.top-info-bar {
  background: #1a0d07;
  border-bottom: 1px solid rgba(201,166,70,0.2);
  width: 100%;
  position: relative;
  z-index: 200;
}
.top-info-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.top-info-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.top-info-item:hover { color: #C9A646; }
.top-info-item svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
  color: #C9A646;
}
.top-info-socials {
  display: flex;
  align-items: center;
  gap: 2px;
}
.top-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  color: rgba(255,255,255,0.55);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.top-social-link:hover { color: #C9A646; background: rgba(201,166,70,0.1); }
.top-social-link svg { width: 14px; height: 14px; }

/* Hide address on small screens, email on very small */
@media (max-width: 860px) { .top-info-addr { display: none !important; } }
@media (max-width: 620px) { .top-info-email { display: none; } }
@media (max-width: 420px) { .top-info-contacts { gap: 12px; } }

/* ============================================================
   ORTHODOX ORNAMENTAL BORDER
   ============================================================ */
.orth-border-top {
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom,
    #D4AF37 0px,   #D4AF37 2px,
    #19080A 2px,   #19080A 8px,
    #D4AF37 8px,   #D4AF37 10px
  );
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}


/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.top-contact-bar {
  background: var(--warm-brown);
  border-bottom: 1px solid rgba(201, 166, 70, 0.25);
  padding: 7px 20px;
}
.top-contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
a.top-contact-item:hover { color: var(--primary-gold); }
.top-contact-icon { font-size: 0.8rem; color: var(--primary-gold); }
@media (max-width: 600px) {
  .top-contact-address { display: none; }
  .top-contact-inner { gap: 18px; }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll on every page */
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw; /* belt-and-suspenders: nothing wider than viewport */
}

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

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  background: var(--primary-gold);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-family: 'Orthodox', serif;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top var(--transition);
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: 'Orthodox', serif; line-height: 1.2; }
p { line-height: 1.7; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--primary-gold);
  padding: 20px 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--bulgarian-red), var(--primary-gold), var(--bulgarian-red));
  opacity: 0.4;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
  box-shadow:
    0 0 0 8px rgba(201, 166, 70, 0.2),
    0 0 0 10px rgba(201, 166, 70, 0.08),
    0 6px 24px rgba(44, 24, 16, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.header-icon:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 10px rgba(201, 166, 70, 0.25), 0 8px 32px rgba(44, 24, 16, 0.2);
}

.header-logo {
  max-height: 130px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition);
}
.header-logo:hover { transform: scale(1.03); }

/* Hide EST. 1910 text and decorative crosses from all pages */
.header-est { display: none !important; }

.icon-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--primary-gold);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.2), 0 6px 24px rgba(44, 24, 16, 0.2);
  background: linear-gradient(135deg, var(--cream), var(--light-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.icon-label {
  font-family: 'Orthodox', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.header-center {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.cathedral-name {
  font-family: 'Orthodox', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-shadow: 1px 2px 8px rgba(212, 175, 55, 0.3);
}

.cathedral-subtitle {
  font-family: 'PT Serif', serif;
  font-size: 1.05rem;
  color: var(--warm-brown);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.header-est {
  font-family: 'Orthodox', serif;
  font-size: 0.875rem;
  color: var(--dark-text);
  letter-spacing: 0.2em;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cross-divider {
  color: var(--primary-gold);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.cross-divider .orthodox-cross-icon {
  width: 0.75em;
  height: 1em;
  fill: var(--primary-gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: relative;
  top: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
  border-top: 1px solid rgba(201, 166, 70, 0.35);
  margin: 0 -16px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
}

.nav-menu {
  display: flex;
  flex: 1;
  gap: 0;
  justify-content: center;
}

.nav-menu li a {
  display: block;
  padding: 18px 10px;
  font-family: 'Orthodox', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition), border-bottom-color var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 16px;
}

.lang-btn {
  padding: 5px 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: 'Orthodox', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: all var(--transition);
  background: transparent;
  color: var(--dark-text);
}
.lang-btn.active {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}
.lang-btn:not(.active):hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.lang-separator {
  color: var(--primary-gold);
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO (Home Page)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 68vh, 780px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--warm-brown) 0%, #5C2A10 50%, var(--warm-brown) 100%);
}

.hero-slides {
  display: block;
}

/* Legacy — kept for fallback */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO SLIDESHOW */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0d0806;
  opacity: 0;
  transform: scale(1.04) translateZ(0);
  z-index: 0;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: contrast(1.06) saturate(1.10) brightness(1.02);
  /* No transition on base — invisible slides reset instantly, no glitch */
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0) translateZ(0);
  z-index: 2;
  transition: opacity 1.5s ease-in-out, transform 10s ease-out;
}
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.0) translateZ(0);
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
}
.hero-overlay {
  z-index: 1;
}
.hero-overlay::before {
  content: '';
  position: absolute;
  width: clamp(90px, 14vw, 160px);
  height: clamp(120px, 18.6vw, 212px); /* width × 608/458 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 458 608' fill='white' fill-rule='evenodd'%3E%3Cpath d='M 190,35 A 35,35 0 0 1 260,35 A 35,35 0 0 1 260,105 V 190 H 345 A 35,35 0 0 1 415,190 A 35,35 0 0 1 415,260 A 35,35 0 0 1 345,260 H 260 V 495 A 35,35 0 0 1 260,565 A 35,35 0 0 1 190,565 A 35,35 0 0 1 190,495 V 260 H 105 A 35,35 0 0 1 35,260 A 35,35 0 0 1 35,190 A 35,35 0 0 1 105,190 H 190 V 105 A 35,35 0 0 1 190,35 z M 214,35 v 24 h -24 v 22 h 24 v 133 h -133 v -24 h -22 v 24 h -24 v 22 h 24 v 24 h 22 v -24 h 133 v 283 h -24 v 22 h 24 v 24 h 22 v -24 h 24 v -22 h -24 v -283 h 133 v 24 h 22 v -24 h 24 v -22 h -24 v -24 h -22 v 24 h -133 v -133 h 24 v -22 h -24 v -24 z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}


.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--warm-brown) 0%, #5C2A10 50%, var(--warm-brown) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(44, 24, 16, 0.50) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-title {
  font-family: 'Orthodox', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-gold);
  text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.hero-tagline {
  font-family: 'PT Serif', serif;
  font-size: 1.2rem;
  color: var(--cream);
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
  max-width: 620px;
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--warm-brown) 0%, #5C2A10 50%, var(--warm-brown) 100%);
  padding: 44px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Desktop only — big hero with zoom-out animation */
@keyframes page-hero-zoom-out {
  from { background-size: 115% auto; }
  to   { background-size: 100% auto; }
}
@media (min-width: 1025px) {
  .page-hero {
    padding: 80px 20px;
    min-height: 200px;
    animation: none;
  }
}

.page-hero-title {
  font-family: 'Orthodox', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35); /* keep text sharp above cross */
}

.page-hero-subtitle {
  font-family: 'PT Serif', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  z-index: 1;
}

/* Container inside hero sits above the cross */
.page-hero .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 20px;
}
.section-alt {
  background: var(--cream);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: 'Orthodox', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--warm-brown);   /* warm brown — replaces cold blue */
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.section-divider {
  display: block;
  position: relative;
  width: 100%;
  height: 47px;
  margin: 0 auto 44px;
  background: url('../assets/images/icons/border.png') center / 333px 47px no-repeat;
}
.section-divider::before,
.section-divider::after { display: none; }

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--blue-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(44, 24, 16, 0.14);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-family: 'Orthodox', serif;
  font-size: 1.15rem;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-date {
  font-size: 0.85rem;
  color: var(--primary-gold);
  font-weight: 700;
  font-family: 'Orthodox', serif;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.9375rem;
  color: #6B4A38;
  line-height: 1.7;
}

/* ============================================================
   SERVICE SCHEDULE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 2px 16px var(--blue-light);
  border-left: 4px solid var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(44, 24, 16, 0.12);
}

.service-icon {
  font-size: 1.75rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
  color: var(--primary-gold);
}

.service-name {
  font-family: 'Orthodox', serif;
  font-size: 0.9375rem;
  color: var(--dark-text);
  font-weight: 600;
}

.service-time {
  font-size: 0.9rem;
  color: var(--primary-gold);
  font-weight: 700;
  margin-top: 4px;
  font-family: 'Orthodox', serif;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Orthodox', serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}
.btn-primary:hover {
  background: var(--warm-brown);
  border-color: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(44,24,16,0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}
.btn-secondary:hover {
  background: var(--primary-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.btn-red {
  background: var(--bulgarian-red);
  color: white;
  border-color: var(--bulgarian-red);
}
.btn-red:hover {
  background: #b51e0e;
  border-color: #b51e0e;
}

/* ============================================================
   QUICK ACTIONS
   ============================================================ */
.quick-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  border: 1px solid rgba(44, 24, 16, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  background: white;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: white;
  transition: background var(--transition);
  user-select: none;
  gap: 16px;
}
.accordion-header:hover,
.accordion.open .accordion-header {
  background: var(--cream);
}

.accordion-title {
  font-family: 'Orthodox', serif;
  font-size: 1.05rem;
  color: var(--warm-brown);
  flex: 1;
}

.accordion-icon {
  font-size: 0.875rem;
  color: var(--primary-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding var(--transition);
  padding: 0 24px;
}
.accordion.open .accordion-body {
  max-height: 3000px;
  padding: 0 24px 24px;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 44px;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-gold), var(--warm-brown), var(--primary-gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 20px;
  width: 18px;
  height: 18px;
  background: var(--primary-gold);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary-gold);
  z-index: 1;
}

.timeline-date {
  font-family: 'Orthodox', serif;
  font-size: 0.8rem;
  color: var(--bulgarian-red);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.timeline-content {
  transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-content:hover {
  transform: translateX(4px);
}

/* ============================================================
   PERSON / STAFF CARDS
   ============================================================ */
.person-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--blue-light);
  text-align: center;
  padding: 30px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44,24,16,0.14);
}

.person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-gold);
  margin: 0 auto 16px;
  display: block;
}

.person-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--primary-gold);
  background: linear-gradient(135deg, var(--cream), var(--light-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 16px;
}

.person-name {
  font-family: 'Orthodox', serif;
  font-size: 1.15rem;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.person-title {
  font-size: 0.8rem;
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Orthodox', serif;
  margin-bottom: 12px;
}

.person-info {
  font-size: 0.9375rem;
  color: #6B4A38;
  line-height: 1.7;
  font-family: 'PT Serif', serif;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--cream);
}

.gallery-item img,
.gallery-item .gallery-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img,
.gallery-item:hover .gallery-img-placeholder {
  transform: scale(1.06);
}

.gallery-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--cream), var(--light-gold));
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 1.75rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-placeholder {
  width: 600px;
  max-width: 88vw;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-text), #5C2A10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   HALL FEATURES GRID
   ============================================================ */
.hall-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 16px var(--blue-light);
  border-top: 4px solid var(--primary-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44,24,16,0.14);
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.feature-title {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  color: var(--warm-brown);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-detail {
  font-size: 0.9375rem;
  color: #6B4A38;
  line-height: 1.7;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 24px;
  background: transparent;
  color: var(--dark-text);
  font-family: 'Orthodox', serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
  box-shadow: 0 2px 12px rgba(212,175,55,0.3);
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 2px 16px var(--blue-light);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 3px solid var(--primary-gold);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(44,24,16,0.12);
}

.contact-icon {
  font-size: 1.6rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-family: 'Orthodox', serif;
  font-size: 0.75rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-sub {
  font-size: 0.875rem;
  color: #7A5A48;
  margin-top: 4px;
  line-height: 1.6;
}

/* ============================================================
   TABLES
   ============================================================ */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--blue-light);
}

.info-table thead tr {
  background: var(--warm-brown);
}

.info-table th {
  color: white;
  font-family: 'Orthodox', serif;
  font-size: 0.82rem;
  padding: 14px 18px;
  text-align: left;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.info-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
  font-size: 0.9375rem;
  color: var(--dark-text);
}

.info-table tr:nth-child(even) td {
  background: var(--cream);
}

.info-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   BULLETINS
   ============================================================ */
.bulletin-card {
  background: white;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 2px 12px var(--blue-light);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 3px solid var(--bulgarian-red);
}
.bulletin-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 20px rgba(44,24,16,0.12);
}

.bulletin-icon {
  font-size: 2.2rem;
  color: var(--bulgarian-red);
  flex-shrink: 0;
}

.bulletin-title {
  font-family: 'Orthodox', serif;
  font-size: 0.9375rem;
  color: var(--dark-text);
  margin-bottom: 4px;
  font-weight: 600;
}

.bulletin-meta {
  font-size: 0.8rem;
  color: #9E7C6A;
}

/* ============================================================
   IMG PLACEHOLDER
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-text);
  color: white;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-family: 'Orthodox', serif;
  font-size: 0.9rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-section p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.footer-section a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: block;
  line-height: 1.9;
  transition: color var(--transition);
}
.footer-section a:hover { color: var(--primary-gold); }

.footer-logo-img {
  display: block;
  width: 72px;
  height: auto;
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--primary-gold);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--warm-brown);
  transform: translateY(-3px);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.text-blue { color: var(--warm-brown); }
.text-red { color: var(--bulgarian-red); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   BLOCKQUOTE / SCRIPTURE
   ============================================================ */
.scripture-quote {
  font-family: 'PT Serif', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--warm-brown);
  line-height: 1.75;
  border-left: 4px solid var(--primary-gold);
  padding: 20px 28px;
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 16px var(--blue-light);
  max-width: 700px;
  margin: 0 auto;
}
.scripture-citation {
  font-family: 'Orthodox', serif;
  font-size: 0.875rem;
  color: var(--primary-gold);
  font-style: normal;
  display: block;
  margin-top: 10px;
  text-align: right;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--cream);
  padding: 10px 20px;
  border-bottom: 1px solid rgba(44,24,16,0.07);
  font-size: 0.875rem;
  color: #7A5A48;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.breadcrumb a {
  color: var(--warm-brown);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 8px; color: var(--primary-gold); }

/* ============================================================
   STAFF CARD (detailed)
   ============================================================ */
.staff-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--blue-light);
  overflow: hidden;
}
.staff-card-header {
  background: linear-gradient(135deg, var(--warm-brown), #5C2A10);
  padding: 32px 24px;
  text-align: center;
}
.staff-card-body {
  padding: 28px;
}
.staff-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.staff-info-row:last-child { margin-bottom: 0; }
.staff-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.staff-info-label {
  font-family: 'Orthodox', serif;
  font-size: 0.72rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.staff-info-value {
  font-size: 0.9375rem;
  color: #6B4A38;
  line-height: 1.6;
}
.staff-info-value a { color: var(--warm-brown); text-decoration: none; }
.staff-info-value a:hover { text-decoration: underline; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--warm-brown) 0%, var(--warm-brown) 55%, var(--warm-brown) 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-cross-wrap {
  margin-bottom: 24px;
  animation: loader-pulse 2s ease-in-out infinite;
}
.loader-cross-wrap svg { display: block; width: 56px; height: 76px; fill: #D4AF37; filter: drop-shadow(0 0 18px rgba(212,175,55,0.6)); }
@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.93); opacity: 0.75; }
}
.loader-title {
  font-family: 'Orthodox', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: #D4AF37;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-align: center;
}
.loader-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.loader-bar {
  width: min(220px, 60vw);
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37, #fff8dc, #D4AF37);
  border-radius: 2px;
  animation: loader-fill 2.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loader-fill {
  0%   { width: 0%; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

/* ============================================================
   ORTHODOX CROSS ICON (replaces ✠)
   ============================================================ */
.orthodox-cross-icon {
  display: inline-block;
  width: 0.75em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin: 0 0.1em;
  position: relative;
  top: -0.06em;
}
.service-icon .orthodox-cross-icon {
  width: 1.4rem;
  height: 1.85rem;
  fill: var(--primary-gold);
}

/* ============================================================
   LIGHTBOX ENHANCEMENTS
   ============================================================ */
.lightbox-counter {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  pointer-events: none;
  z-index: 10001;
  background: rgba(0,0,0,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.lightbox-caption {
  display: none;
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 70vw;
  color: rgba(255,255,255,0.85);
  font-family: 'PT Serif', serif;
  font-size: 0.88rem;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lightbox-img {
  animation: lb-fadein 0.22s ease;
}
@keyframes lb-fadein {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
#lightbox-content {
  width: 100%;
  min-height: 60vh;
}

/* ============================================================
   HERO DOTS & ARROWS — interactive slideshow controls
   ============================================================ */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s, border-radius 0.3s;
  flex-shrink: 0;
}
.hero-dot.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  width: 24px;
  border-radius: 4px;
  transform: none;
}
.hero-dot:hover:not(.active) { background: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.75); }

/* Prev / Next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.28);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(212,175,55,0.55);
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow-prev { left: 18px; }
.hero-arrow-next { right: 18px; }

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary-gold);
  width: 0%;
  z-index: 10;
  transition: none;
}
.hero-progress.running {
  transition: width linear;
}

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */
.nav-has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 220px;
  background: white;
  box-shadow: 0 12px 36px rgba(44,24,16,0.15), 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 0 0 10px 10px;
  border-top: 3px solid var(--primary-gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 1002;
  padding: 6px 0;
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  padding: 11px 22px !important;
  border-bottom: none !important;
  border-left: none !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.04em !important;
  color: var(--dark-text) !important;
  display: block !important;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, padding-left 0.15s !important;
}
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--primary-gold) !important;
  padding-left: 28px !important;
  border-bottom: none !important;
}

.nav-arrow {
  font-size: 0.5rem;
  vertical-align: middle;
  transition: transform 0.22s ease;
  display: inline-block;
  margin-left: 2px;
}
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Mobile dropdown accordion */
.nav-dropdown-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-left: 3px solid var(--primary-gold);
  margin-left: 0;
}
.nav-dropdown-mobile.open { display: flex; }
.nav-dropdown-mobile a {
  padding: 12px 36px !important;
  font-size: 0.78rem !important;
  border-bottom: 1px solid rgba(44,24,16,0.05) !important;
  border-left: none !important;
}
.nav-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-gold);
  font-size: 0.7rem;
  transition: transform 0.22s;
  padding: 4px;
  display: none;
}
.nav-toggle-btn.rotated { transform: rotate(180deg); }

/* ============================================================
   ACTION CARDS GRID (Homepage)
   ============================================================ */
.action-cards-section {
  padding: 64px 20px;
  background: white;
}
.action-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.action-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 16px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44,24,16,0.09);
  border-top: 4px solid var(--primary-gold);
  text-decoration: none;
  color: var(--dark-text);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-top-color 0.28s ease;
  display: block;
}
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(44,24,16,0.16);
  border-top-color: var(--warm-brown);
}
.action-card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.action-card-title {
  font-family: 'Orthodox', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--warm-brown);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.action-card-desc {
  font-size: 0.78rem;
  color: #9E7C6A;
  line-height: 1.5;
}
.action-card.card-donate {
  background: linear-gradient(145deg, #b51e0e, #8a1609);
  border-top-color: var(--primary-gold);
}
.action-card.card-donate .action-card-title { color: var(--primary-gold); }
.action-card.card-donate .action-card-desc { color: rgba(255,255,255,0.8); }
.action-card.card-donate:hover { box-shadow: 0 16px 44px rgba(181,30,14,0.3); border-top-color: var(--primary-gold); }

/* ============================================================
   EVENTS SECTION WITH MINI CALENDAR
   ============================================================ */
.events-section { padding: 80px 20px; background: var(--cream); }
.events-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Mini Calendar */
.mini-calendar {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(44,24,16,0.1);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.mini-cal-header {
  background: var(--warm-brown);   /* dark warm brown — not blue */
  color: white;
  padding: 22px 20px 16px;
  text-align: center;
}
.mini-cal-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mini-cal-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.mini-cal-btn:hover { background: rgba(255,255,255,0.28); }
.mini-cal-month-label {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mini-cal-year-label {
  font-size: 0.75rem;
  opacity: 0.75;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.mini-cal-grid { padding: 14px 14px 12px; }
.mini-cal-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.mini-cal-day-header {
  text-align: center;
  font-family: 'Orthodox', serif;
  font-size: 0.6rem;
  color: var(--primary-gold);
  letter-spacing: 0.05em;
  padding: 4px 0;
}
.mini-cal-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.mini-cal-date {
  text-align: center;
  padding: 7px 2px;
  font-size: 0.78rem;
  border-radius: 6px;
  cursor: default;
  transition: all 0.18s;
  color: var(--dark-text);
  line-height: 1;
}
.mini-cal-date.empty { opacity: 0; pointer-events: none; }
.mini-cal-date.other-month { color: #C4A898; }
.mini-cal-date.sunday { color: var(--bulgarian-red); }
/* TODAY — blue marker, overrides ALL other date classes with !important */
.mini-cal-date.today {
  background: var(--orthodox-blue) !important;  /* blue = ONLY today, never future dates */
  color: white !important;
  font-weight: 700;
  border-radius: 50% !important;
  border: none !important;
}
/* SELECTED (clicked) date — gold outline ring */
.mini-cal-date.selected {
  outline: 2px solid var(--primary-gold);
  outline-offset: -2px;
  border-radius: 50%;
}
/* Past event item — slightly muted */
.event-item.event-past .event-date-badge {
  opacity: 0.65;
}
.event-item.event-past .event-title {
  color: #9E7C6A;
}
.mini-cal-date.has-event {
  background: rgba(212,175,55,0.18);
  color: var(--warm-brown);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.5);
}
.mini-cal-date.has-event:hover {
  background: var(--primary-gold);
  color: white !important;
}
.mini-cal-date.has-feast {
  background: rgba(214,38,18,0.1);
  color: var(--bulgarian-red);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(214,38,18,0.3);
}
.mini-cal-date.has-feast:hover {
  background: var(--bulgarian-red);
  color: white !important;
}
.cal-legend {
  padding: 10px 14px 14px;
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: #8C6B5A;
  flex-wrap: wrap;
}
.cal-legend-item { display: flex; align-items: center; gap: 5px; }
.cal-legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ============================================================
   ORTHODOX DECORATIVE DIVIDER (Part 5)
   Pure CSS + inline SVG — gold, symmetrical, cross motif
   ============================================================ */
.orthodox-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto 0;
  padding: 28px 20px;
  position: relative;
}
.orthodox-divider::before,
.orthodox-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--primary-gold) 40%, var(--primary-gold) 60%, transparent 100%);
}
.orth-div-icon {
  width: 80px;
  height: 28px;
  flex-shrink: 0;
  color: var(--primary-gold);
  fill: currentColor;
}

/* ============================================================
   EVENT SLIDER (Parts 1, 2 & 6)
   ============================================================ */
.event-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 166, 70, 0.25);
  flex-wrap: wrap;
  gap: 10px;
}

/* Upcoming / Past tab buttons */
.event-tab-group {
  display: flex;
  gap: 4px;
}
.event-tab {
  font-family: 'Orthodox', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  cursor: pointer;
  border: 1.5px solid rgba(201, 166, 70, 0.4);
  background: transparent;
  color: #AC8E7E;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.event-tab.active {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}
.event-tab:hover:not(.active) {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* "Today" / "Next Service" label pill */
.event-slider-label {
  font-family: 'Orthodox', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-gold);
  border: 1.5px solid var(--primary-gold);
  padding: 4px 14px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}
/* "Today" state — filled gold */
.event-slider-label.label-today {
  background: var(--primary-gold);
  color: white;
}
/* Past event label — muted */
.event-slider-label.label-past {
  color: #AC8E7E;
  border-color: rgba(153, 153, 153, 0.5);
}

/* Prev / Next arrow buttons */
.event-slider-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-nav-btn {
  background: none;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.event-nav-btn:hover {
  background: var(--primary-gold);
  color: white;
}
.event-nav-counter {
  font-family: 'Orthodox', serif;
  font-size: 0.72rem;
  color: #BA9F90;
  min-width: 40px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Slider viewport: transition handled inline by JS */
#upcoming-events-list[data-mode="slider"] {
  min-height: 80px;
}

/* Full date line above event title */
.event-date-full {
  font-family: 'PT Serif', serif;
  font-size: 0.78rem;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  font-style: italic;
}

/* "Today" event highlight — subtle gold glow */
.event-item.event-today {
  box-shadow: 0 0 0 2px var(--primary-gold), 0 4px 20px rgba(201, 166, 70, 0.25);
  border-left-color: var(--primary-gold);
}

/* Upcoming Events List */
.upcoming-events-list { display: flex; flex-direction: column; gap: 14px; }
.event-item {
  display: flex;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(44,24,16,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 4px solid var(--primary-gold);
}
.event-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(44,24,16,0.13);
}
.event-item.feast-day { border-left-color: var(--bulgarian-red); }
.event-item.community-event { border-left-color: var(--primary-gold); }
.event-date-badge {
  background: var(--warm-brown);   /* dark brown for regular services */
  color: white;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  text-align: center;
  flex-shrink: 0;
}
.event-date-badge.badge-red { background: var(--bulgarian-red); }
.event-date-badge.badge-gold { background: var(--primary-gold); }
.events-month-heading {
  font-family: 'Orthodox', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-brown);
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 6px;
  margin: 18px 0 6px;
}
.event-date-day {
  font-family: 'Orthodox', serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}
.event-date-month {
  font-family: 'Orthodox', serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.88;
}
.event-info {
  flex: 1;
  padding: 14px 18px;
}
.event-title {
  font-family: 'Orthodox', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.event-time {
  font-size: 0.78rem;
  color: var(--primary-gold);
  font-weight: 600;
  font-family: 'Orthodox', serif;
  margin-bottom: 3px;
}
.event-desc {
  font-size: 0.78rem;
  color: #9E7C6A;
  line-height: 1.5;
}

/* ============================================================
   SCRIPTURE BANNER
   ============================================================ */
.scripture-banner {
  background: linear-gradient(135deg, var(--warm-brown) 0%, #5C2A10 100%);
  padding: 50px 20px;
  text-align: center;
  border-top: 4px solid var(--primary-gold);
  border-bottom: 4px solid var(--primary-gold);
}
.scripture-banner blockquote {
  font-family: 'PT Serif', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  max-width: 700px;
  margin: 0 auto 14px;
  line-height: 1.85;
}
.scripture-banner cite {
  font-family: 'Orthodox', serif;
  font-size: 0.85rem;
  color: var(--primary-gold);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ============================================================
   NEWSLETTER SIGNUP SECTION
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, #5C2A10 0%, var(--warm-brown) 100%);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '✉';
  position: absolute;
  font-size: 22rem;
  opacity: 0.10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  pointer-events: none;
  line-height: 1;
}
.newsletter-content {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-icon-large { font-size: 3rem; margin-bottom: 16px; display: block; }
.newsletter-title {
  font-family: 'Orthodox', serif;
  font-size: 1.9rem;
  color: var(--primary-gold);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.newsletter-subtitle {
  font-family: 'PT Serif', serif;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 34px;
}
.newsletter-form-inline {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}
.newsletter-form-inline input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(212,175,55,0.35);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-form-inline input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form-inline input[type="email"]:focus {
  border-color: var(--primary-gold);
  background: rgba(255,255,255,0.12);
}
.newsletter-privacy-note { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-top: 12px; }
.newsletter-success-msg {
  display: none;
  padding: 16px 24px;
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--primary-gold);
  border-radius: 8px;
  color: var(--primary-gold);
  font-family: 'Orthodox', serif;
  font-size: 0.9rem;
}

/* ============================================================
   DONATION SECTION
   ============================================================ */
.donation-section { padding: 80px 20px; background: var(--cream); }
.donation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.donation-text h2 {
  font-family: 'Orthodox', serif;
  font-size: 1.9rem;
  color: var(--warm-brown);
  margin-bottom: 16px;
  line-height: 1.2;
}
.donation-text .section-divider { margin: 0 0 20px; }
.donation-text p { color: #6B4A38; line-height: 1.85; margin-bottom: 18px; font-size: 0.95rem; }
.donation-scripture {
  font-family: 'PT Serif', serif;
  font-style: italic;
  color: var(--warm-brown);
  border-left: 3px solid var(--primary-gold);
  padding: 12px 18px;
  background: white;
  border-radius: 0 8px 8px 0;
  margin: 20px 0 28px;
  font-size: 0.93rem;
  line-height: 1.7;
}
.donation-ways {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 28px rgba(44,24,16,0.09);
  overflow: hidden;
}
.donation-ways-header {
  background: var(--warm-brown);
  color: white;
  padding: 22px 28px;
}
.donation-ways-header h3 {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.donation-ways-body { padding: 8px 0; }
.donation-way-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(44,24,16,0.07);
  transition: background 0.18s;
}
.donation-way-item:last-child { border-bottom: none; }
.donation-way-item:hover { background: var(--cream); }
.donation-way-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.donation-way-title {
  font-family: 'Orthodox', serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}
.donation-way-desc { font-size: 0.82rem; color: #8C6B5A; line-height: 1.6; }
.donation-way-desc a { color: var(--warm-brown); }
.donation-way-desc a:hover { text-decoration: underline; }

/* ============================================================
   FLOATING ACTION BUTTONS (FABs)
   ============================================================ */
.fab-container {
  position: fixed;
  right: 28px;
  bottom: 92px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 997;
}
.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease, box-shadow 0.22s;
  text-decoration: none;
  color: white;
  opacity: 0;
  transform: translateX(20px);
  visibility: hidden;
  position: relative;
  background: var(--warm-brown);
}
.fab-btn.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.fab-btn:hover {
  transform: translateX(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.fab-donate { background: var(--bulgarian-red); transition-delay: 0.05s; }
.fab-events { background: var(--warm-brown); transition-delay: 0.1s; }
.fab-newsletter-btn { background: var(--primary-gold); transition-delay: 0.15s; }
/* Tooltip */
.fab-btn[title]::before {
  content: attr(title);
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(26,26,46,0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: 'Orthodox', serif;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.18s;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
}
.fab-btn[title]:hover::before { opacity: 1; }

/* ============================================================
   NEWSLETTER MODAL
   ============================================================ */
.newsletter-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.newsletter-modal-overlay.open { opacity: 1; visibility: visible; }
.newsletter-modal-box {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 48px 36px 36px;
  text-align: center;
  position: relative;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  border-top: 5px solid var(--primary-gold);
}
.newsletter-modal-overlay.open .newsletter-modal-box { transform: scale(1) translateY(0); }
.newsletter-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--cream);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #9E7C6A;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.newsletter-modal-close:hover { background: #eee; color: var(--dark-text); }
.newsletter-modal-icon { font-size: 3.5rem; margin-bottom: 14px; display: block; }
.newsletter-modal-title {
  font-family: 'Orthodox', serif;
  font-size: 1.35rem;
  color: var(--warm-brown);
  margin-bottom: 10px;
  line-height: 1.3;
}
.newsletter-modal-desc { color: #7A5A48; font-size: 0.88rem; line-height: 1.75; margin-bottom: 26px; }
.newsletter-modal-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-modal-form input {
  padding: 13px 16px;
  border: 2px solid rgba(44,24,16,0.14);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.newsletter-modal-form input:focus { border-color: var(--primary-gold); }
.newsletter-modal-privacy { font-size: 0.7rem; color: #C4A898; margin-top: 10px; }
.newsletter-modal-thanks {
  display: none;
  text-align: center;
  padding: 20px;
}
.newsletter-modal-thanks .thanks-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.newsletter-modal-thanks h3 {
  font-family: 'Orthodox', serif;
  color: var(--warm-brown);
  margin-bottom: 8px;
}
.newsletter-modal-thanks p { color: #7A5A48; font-size: 0.875rem; }

/* ============================================================
   SOCIAL MEDIA
   ============================================================ */
.social-links { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none !important;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.15);
  line-height: 1;
}
.social-link svg {
  display: block;
  flex-shrink: 0;
}
.social-link:hover {
  background: var(--primary-gold);
  color: white !important;
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}

/* ============================================================
   RESPONSIVE — New Elements
   ============================================================ */
@media (max-width: 1024px) {
  .action-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .events-layout { grid-template-columns: 1fr; gap: 32px; }
  .mini-calendar { position: static; }
  .donation-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .action-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .action-card { padding: 24px 12px 18px; }
  .action-card-icon { font-size: 2rem; }
  .newsletter-form-inline { flex-direction: column; }
  .newsletter-form-inline input[type="email"] { width: 100%; }
  .newsletter-title { font-size: 1.5rem; }
  .fab-container { right: 16px; bottom: 82px; }
  .fab-btn { width: 46px; height: 46px; font-size: 1.1rem; }
  .fab-btn[title]::before { display: none; }
  .donation-layout { grid-template-columns: 1fr; }
  .events-layout { grid-template-columns: 1fr; }
  .nav-dropdown { display: none !important; }
  .nav-toggle-btn { display: flex !important; }
}
@media (max-width: 480px) {
  .action-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-modal-box { padding: 40px 24px 28px; }
  .newsletter-title { font-size: 1.3rem; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .page-hero { animation: none !important; }
}

/* ============================================================
   FIND YOUR WAY — numbered editorial guide (homepage)
   ============================================================ */
.section-kicker {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 10px;
}

.guide-section {
  padding: 80px 20px;
  background: #fff;
}
.guide-section .section-title { text-align: center; }
.guide-list {
  list-style: none;
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0;
}
.guide-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0 20px;
  padding: 34px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
}
.guide-row:last-child { border-bottom: 1px solid rgba(201, 168, 76, 0.4); }
.guide-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-gold);
  line-height: 1.3;
}
.guide-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--deep-burgundy, #4A0E0E);
  margin: 0 0 10px;
}
.guide-body p {
  font-family: 'PT Serif', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 14px;
}
.guide-link {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--deep-burgundy, #4A0E0E);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(201, 168, 76, 0.7);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.guide-link:hover {
  color: var(--primary-gold);
  text-decoration-color: var(--primary-gold);
}
@media (max-width: 600px) {
  .guide-section { padding: 56px 18px; }
  .guide-row { grid-template-columns: 44px 1fr; padding: 26px 0; }
  .guide-num { font-size: 1.1rem; }
  .guide-body h3 { font-size: 1.3rem; }
}
