:root {
  --navy: #0f1a2e;
  --navy-deep: #0a1220;
  --burgundy: #6b1c2a;
  --gold: #c9a84c;
  --gold-light: #e2c76e;
  --cream: #faf6ee;
  --cream-warm: #f5efe3;
  --stone: #e8e0d0;
  --text-dark: #1a1a1a;
  --text-body: #3d3832;
  --text-muted: #7a7265;
  --fast-purple: #7a6b8a;
  --fast-purple-dark: #5a4e6a;
  --white: #ffffff;
  --shadow-soft: 0 4px 24px rgba(15,26,46,0.08);
  --shadow-medium: 0 8px 40px rgba(15,26,46,0.12);
  --nav-height: 64px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height, 64px); scrollbar-gutter: stable; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(10,18,32,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem; padding: 0 2rem; height: var(--nav-height);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; white-space: nowrap; justify-self: start; }
.nav-cross { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; }
.nav-brand-text {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: 0; flex-wrap: nowrap; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.9);
  font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase; white-space: nowrap;
  padding: 22px 8px; display: block; transition: all 0.3s ease; position: relative; line-height: 1;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 16px; left: 10px; right: 10px;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold-light); outline: none; }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }

/* Hamburger button */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative; padding: 0;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--gold); border-radius: 1px; transition: all 0.3s ease;
}
.nav-hamburger span:nth-child(1) { top: 12px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger span:nth-child(3) { top: 30px; }
.nav-hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
  justify-self: end;
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.28);
  overflow: hidden; z-index: 10;
}
.lang-opt {
  background: none; border: none; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 11px; min-height: 44px; display: flex; align-items: center;
  transition: all 0.2s ease; line-height: 1;
}
.lang-opt.active {
  background: var(--gold); color: var(--navy-deep);
}
.lang-opt:hover:not(.active) { color: rgba(255,255,255,0.9); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 70vh; min-height: 70dvh;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-items: center;
  background: var(--navy-deep); overflow: hidden; padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107,28,42,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(15,26,46,0.8) 0%, transparent 70%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(201,168,76,0.5) 49px, rgba(201,168,76,0.5) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(201,168,76,0.5) 49px, rgba(201,168,76,0.5) 50px);
}
.hero-content {
  grid-column: 2; grid-row: 1;
  position: relative; text-align: center; padding: 2rem;
  animation: heroFadeIn 1.5s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-orthodox-cross { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.orthodox-cross-svg { width: 140px; height: 140px; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(201,168,76,0.45)); }
.hero-subtitle-top {
  font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 500;
}
.hero-title {
  font-family: 'Cinzel', serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 0.3em; letter-spacing: 0.04em;
}
.hero-cathedral {
  font-family: 'Cinzel', serif; font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 400;
  color: rgba(255,255,255,0.6); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 2rem;
}
.hero-divider { width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 1.5rem; }
.hero-address { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--white); letter-spacing: 0.08em; font-weight: 300; }
.hero-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2rem; font-family: 'Cinzel', serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold); padding: 0.75rem 2rem;
  min-height: 44px; text-decoration: none; transition: all 0.3s; border-radius: 2px;
}
.hero-cta:hover,
.hero-cta:focus-visible { background: var(--gold); color: var(--navy-deep); outline: none; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); animation: scrollBounce 2.5s ease-in-out infinite; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.4; }
}

.hero-building {
  grid-column: 1; grid-row: 1;
  z-index: 1; pointer-events: none; padding: 0 1rem;
}
.hero-building-img {
  width: clamp(140px, 22vw, 360px); height: auto;
  opacity: 0.75;
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 30px rgba(201,168,76,0.15);
  animation: heroFadeIn 1.8s ease forwards;
}
.hero-icon {
  grid-column: 3; grid-row: 1;
  z-index: 1; pointer-events: none; padding: 0 1rem;
}
.hero-saint-icon {
  width: clamp(120px, 18vw, 300px); height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3)) drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  animation: heroFadeIn 1.8s ease forwards;
}

/* ========== SECTION DEFAULTS ========== */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 1rem; font-weight: 600;
}
.section-title {
  font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600;
  color: var(--navy); text-align: center; margin-top: 0; margin-bottom: 1rem; line-height: 1.2;
}
.section-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 3rem; }

/* ========== ABOUT ========== */
.about { background: var(--cream); position: relative; }
.about--ornamented {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f0e2 0%, #f5eedf 48%, #f2eadb 100%);
}
.about--ornamented::before {
  content: '';
  position: absolute;
  inset: 1.15rem;
  border: 1px solid rgba(182,145,55,0.28);
  box-shadow:
    inset 0 0 0 10px rgba(247,240,226,0.94),
    inset 0 0 0 11px rgba(182,145,55,0.18),
    inset 0 0 0 22px rgba(107,28,42,0.035);
  pointer-events: none;
}
.about--ornamented::after {
  content: '';
  position: absolute;
  inset: 2rem;
  pointer-events: none;
  opacity: 0.56;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 96'%3E%3Cg fill='none' stroke='%23b69137' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 48h250'/%3E%3Cpath d='M630 48h250'/%3E%3Cpath d='M20 59h250' opacity='.7'/%3E%3Cpath d='M630 59h250' opacity='.7'/%3E%3Cpath d='M270 48c34 0 54-28 90-28h180c36 0 56 28 90 28'/%3E%3Cpath d='M286 59c26 0 44-18 74-18h180c30 0 48 18 74 18' opacity='.75'/%3E%3Ccircle cx='450' cy='48' r='16'/%3E%3C/g%3E%3Cg fill='%236b1c2a' fill-opacity='.18'%3E%3Ccircle cx='450' cy='48' r='8'/%3E%3C/g%3E%3Cg fill='%23818267' fill-opacity='.54'%3E%3Cpath d='M316 43c13-16 27-22 42-19-13 17-27 23-42 19Z'/%3E%3Cpath d='M542 43c13-16 27-22 42-19-13 17-27 23-42 19Z'/%3E%3Cpath d='M344 61c14-10 28-12 40-7-13 10-26 13-40 7Z'/%3E%3Cpath d='M516 61c14-10 28-12 40-7-13 10-26 13-40 7Z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 96'%3E%3Cg fill='none' stroke='%23b69137' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 48h250'/%3E%3Cpath d='M630 48h250'/%3E%3Cpath d='M20 59h250' opacity='.7'/%3E%3Cpath d='M630 59h250' opacity='.7'/%3E%3Cpath d='M270 48c34 0 54-28 90-28h180c36 0 56 28 90 28'/%3E%3Cpath d='M286 59c26 0 44-18 74-18h180c30 0 48 18 74 18' opacity='.75'/%3E%3Ccircle cx='450' cy='48' r='16'/%3E%3C/g%3E%3Cg fill='%236b1c2a' fill-opacity='.18'%3E%3Ccircle cx='450' cy='48' r='8'/%3E%3C/g%3E%3Cg fill='%23818267' fill-opacity='.54'%3E%3Cpath d='M316 43c13-16 27-22 42-19-13 17-27 23-42 19Z'/%3E%3Cpath d='M542 43c13-16 27-22 42-19-13 17-27 23-42 19Z'/%3E%3Cpath d='M344 61c14-10 28-12 40-7-13 10-26 13-40 7Z'/%3E%3Cpath d='M516 61c14-10 28-12 40-7-13 10-26 13-40 7Z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 900'%3E%3Cg fill='none' stroke='%23b69137' stroke-width='2.1' stroke-linecap='round'%3E%3Cpath d='M48 20v240'/%3E%3Cpath d='M59 20v240' opacity='.7'/%3E%3Cpath d='M48 640v240'/%3E%3Cpath d='M59 640v240' opacity='.7'/%3E%3Cpath d='M48 260c0 35-28 55-28 92v196c0 37 28 57 28 92'/%3E%3Cpath d='M59 276c0 27-18 45-18 76v196c0 31 18 49 18 76' opacity='.75'/%3E%3C/g%3E%3Cg fill='%23818267' fill-opacity='.52'%3E%3Cpath d='M42 314c-16 13-22 27-19 42 17-13 23-27 19-42Z'/%3E%3Cpath d='M60 342c-10 14-12 28-7 40 10-13 13-26 7-40Z'/%3E%3Cpath d='M42 518c-16 13-22 27-19 42 17-13 23-27 19-42Z'/%3E%3Cpath d='M60 546c-10 14-12 28-7 40 10-13 13-26 7-40Z'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 900'%3E%3Cg fill='none' stroke='%23b69137' stroke-width='2.1' stroke-linecap='round'%3E%3Cpath d='M48 20v240'/%3E%3Cpath d='M59 20v240' opacity='.7'/%3E%3Cpath d='M48 640v240'/%3E%3Cpath d='M59 640v240' opacity='.7'/%3E%3Cpath d='M48 260c0 35-28 55-28 92v196c0 37 28 57 28 92'/%3E%3Cpath d='M59 276c0 27-18 45-18 76v196c0 31 18 49 18 76' opacity='.75'/%3E%3C/g%3E%3Cg fill='%23818267' fill-opacity='.52'%3E%3Cpath d='M42 314c-16 13-22 27-19 42 17-13 23-27 19-42Z'/%3E%3Cpath d='M60 342c-10 14-12 28-7 40 10-13 13-26 7-40Z'/%3E%3Cpath d='M42 518c-16 13-22 27-19 42 17-13 23-27 19-42Z'/%3E%3Cpath d='M60 546c-10 14-12 28-7 40 10-13 13-26 7-40Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top, center bottom, left center, right center;
  background-size:
    calc(100% - 16rem) 5rem,
    calc(100% - 16rem) 5rem,
    5rem calc(100% - 16rem),
    5rem calc(100% - 16rem);
}
.about--ornamented .section-inner {
  position: relative;
  z-index: 1;
}
.about-vine {
  position: absolute;
  width: clamp(220px, 18vw, 320px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.46;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 242C28 176 58 130 92 96c26-27 57-45 98-61'/%3E%3Cpath d='M40 225c10-36 27-67 52-94' opacity='.75'/%3E%3Cpath d='M68 194c15-13 30-34 40-59'/%3E%3Cpath d='M104 151c15-10 29-25 39-43'/%3E%3Cpath d='M146 105c12-12 25-22 41-30' opacity='.7'/%3E%3C/g%3E%3Cg fill='%23879170' fill-opacity='.68'%3E%3Cpath d='M64 192c20-14 37-15 51-5-20 14-37 16-51 5Z'/%3E%3Cpath d='M88 157c16-21 32-30 48-27-17 22-33 31-48 27Z'/%3E%3Cpath d='M118 125c18-16 35-23 52-19-19 16-36 23-52 19Z'/%3E%3Cpath d='M145 101c15-18 29-27 44-25-14 19-29 28-44 25Z'/%3E%3Cpath d='M46 221c16-12 31-14 44-8-15 12-30 15-44 8Z'/%3E%3Cpath d='M100 210c15-13 28-16 40-10-14 13-27 17-40 10Z'/%3E%3C/g%3E%3Ccircle cx='194' cy='58' r='4.5' fill='%23c9a84c' fill-opacity='.65'/%3E%3Ccircle cx='173' cy='74' r='2.5' fill='%23c9a84c' fill-opacity='.45'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  filter: saturate(0.92);
}
.about-vine--top-left {
  top: 0.2rem;
  left: 0.2rem;
}
.about-vine--top-right {
  top: 0.2rem;
  right: 0.2rem;
  transform: scaleX(-1);
}
.about-vine--bottom-left {
  bottom: 0.2rem;
  left: 0.2rem;
  transform: scaleY(-1);
}
.about-vine--bottom-right {
  right: 0.2rem;
  bottom: 0.2rem;
  transform: scale(-1);
}
.about-text-full { max-width: 820px; margin: 0 auto; }
.about-text-full h3 {
  font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.5rem; line-height: 1.3; text-align: center;
}
.about-text-full p { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 1.2rem; line-height: 1.85; font-weight: 400; }
.about-text-full p:first-of-type::first-letter {
  font-family: 'Cinzel', serif; font-size: 3.2rem; float: left; line-height: 1;
  margin-right: 0.12em; margin-top: 0.08em; color: var(--burgundy); font-weight: 600;
}
/* ========== SERVICES BANNER ========== */
.services-banner { background: var(--navy-deep); position: relative; overflow: hidden; padding: 5rem 2rem; }
.services-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107,28,42,0.2), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08), transparent 50%);
}
.services-banner .section-label { color: var(--gold); }
.services-banner .section-title { color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px; padding: 2.5rem 2rem; text-align: center; transition: all 0.4s ease;
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
@media (hover: hover) {
  .service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.35); transform: translateY(-4px); z-index: 1; }
}
.service-card:active { z-index: 1; }
.service-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.service-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; opacity: 0.9; }
.service-card:has(.service-card-img) { padding: 0; overflow: hidden; background: transparent; border-color: transparent; }
.service-card-img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 4px; }
.service-card h3 { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold-light); margin-bottom: 1.2rem; letter-spacing: 0.06em; }
.service-card p { font-size: 1.15rem; color: rgba(255,255,255,0.55); line-height: 2; font-weight: 300; }

/* ========== CALENDAR ========== */
.calendar { background: var(--cream-warm); }
.calendar-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.calendar-container { background: var(--white); border-radius: 6px; box-shadow: var(--shadow-medium); overflow: hidden; }
.calendar-sidebar-title { font-family: 'Cinzel', serif; font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 600; color: var(--navy); text-align: center; margin: 0 0 0.5rem; }
.calendar-sidebar .section-line { margin: 0 auto 1.25rem; }
.calendar-sidebar-sub { font-size: 1.05rem; color: var(--text-muted); text-align: center; margin: 0 0 1.25rem; font-weight: 300; font-style: italic; }
.lenten-wrap { overflow-x: auto; background: var(--white); border-radius: 6px; box-shadow: var(--shadow-soft); }
.lenten-table { width: 100%; border-collapse: collapse; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.12rem; }
.calendar-header { background: var(--navy); padding: 1.8rem 2.5rem; display: flex; align-items: center; justify-content: space-between; }
.calendar-month { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--white); font-weight: 600; letter-spacing: 0.08em; }
.calendar-month-sub { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: rgba(255,255,255,0.45); font-weight: 300; margin-top: 0.2rem; }
.calendar-nav { display: flex; gap: 0.5rem; }
.calendar-nav button {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
  width: 48px; height: 48px; border-radius: 4px; cursor: pointer; font-size: 1.1rem;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.calendar-nav button:hover,
.calendar-nav button:focus-visible { background: rgba(201,168,76,0.15); outline: none; }
.calendar-nav button:disabled { opacity: 0.3; cursor: default; }
.calendar-body { padding: 1.5rem 2rem; }
.calendar-legend { display: flex; gap: 1.5rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--stone); flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--text-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.liturgy { background: var(--burgundy); }
.legend-dot.vespers { background: var(--gold); }
.legend-dot.special { background: var(--navy); }
.legend-dot.fast { background: var(--fast-purple); }
.schedule-list { display: flex; flex-direction: column; }
.schedule-day { padding: 1rem 0; border-bottom: 1px solid rgba(232,224,208,0.6); }
.schedule-day:last-child { border-bottom: none; }
.schedule-date {
  display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.schedule-date .day-name { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.schedule-date .date-num { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.schedule-events { display: flex; flex-direction: column; gap: 0.35rem; padding-left: 0.1rem; }
.schedule-event { font-size: 1.12rem; color: var(--text-dark); line-height: 1.7; }
.event-time { font-weight: 600; color: var(--navy); margin-right: 0.3rem; }
.event-name.feast { color: var(--burgundy); font-weight: 600; }
.event-name.fast-note { color: var(--fast-purple-dark); font-style: italic; }

/* ========== INFO CARDS ========== */
.info-section { background: var(--cream); }
.info-section .section-inner { max-width: 1400px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.info-card { background: var(--white); border-radius: 6px; padding: 2.5rem 2rem; box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold); transition: all 0.3s; }
@media (hover: hover) {
  .info-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-3px); }
}
.info-card:active { box-shadow: var(--shadow-medium); }
.info-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.info-card h3 { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; letter-spacing: 0.04em; }
.info-card p { font-size: 1.2rem; color: var(--text-body); line-height: 1.9; font-weight: 300; }
.info-card a { color: var(--burgundy); text-decoration: none; border-bottom: 1px solid rgba(107,28,42,0.3); transition: border-color 0.3s; }
.info-card a:hover,
.info-card a:focus-visible { border-color: var(--burgundy); outline: none; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.info-card a.contact-btn {
  display: inline-flex; align-items: center; font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.75rem 1.25rem;
  min-height: 44px; border-radius: 2px; text-decoration: none; transition: all 0.3s;
}
.info-card a.contact-btn:hover { border-bottom: 1px solid currentColor; }
.contact-btn--email { color: var(--burgundy); border: 1px solid rgba(107,28,42,0.35); }
.contact-btn--email:hover,
.contact-btn--email:focus-visible { background: rgba(107,28,42,0.08); border-color: var(--burgundy); color: var(--burgundy); outline: none; }
.contact-btn--directions { color: var(--navy); border: 1px solid rgba(15,26,46,0.35); }
.contact-btn--directions:hover,
.contact-btn--directions:focus-visible { background: rgba(15,26,46,0.06); border-color: var(--navy); color: var(--navy); outline: none; }

/* ========== PICNIC ========== */
.picnic-section { background: var(--cream); padding: 4rem 2rem; }
.picnic-layout {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.picnic-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.picnic-list-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.picnic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.picnic-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-body);
}
.picnic-list-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.picnic-contact {
  padding-top: 1.75rem;
  border-top: 1px solid var(--stone);
}
.picnic-contact-prompt {
  font-size: 1.06rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.picnic-contact-line {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.picnic-contact-line--phone {
  margin-bottom: 1.25rem;
}
.picnic-contact-link {
  color: var(--navy);
}
.picnic-map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.picnic-contact-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.picnic-contact-btn:hover { border-bottom: 1px solid currentColor; }
.picnic-contact-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
/* ========== NEWS ========== */
.news-card { padding: 2.5rem 0; }
.news-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.news-date {
  font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
}
.news-tag {
  font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--burgundy); background: rgba(107,28,42,0.07);
  border: 1px solid rgba(107,28,42,0.22); padding: 0.2rem 0.6rem; border-radius: 2px;
}
.news-title {
  font-family: 'Cinzel', serif; font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600;
  color: var(--navy); margin-bottom: 0.9rem; line-height: 1.3;
}
.news-body { font-size: 1.1rem; color: var(--text-body); line-height: 1.85; font-weight: 300; max-width: 760px; }
.news-body strong { font-weight: 700; }
.news-image {
  float: left; margin: 0.5rem 2rem 1rem 0; max-width: 340px; border-radius: 6px;
  overflow: hidden; box-shadow: var(--shadow-soft);
}
.news-image img {
  width: 100%; height: auto; display: block;
}
.news-image figcaption {
  font-size: 0.85rem; color: var(--text-muted); padding: 0.6rem 0 0;
  font-style: italic; font-weight: 300;
}
.news-divider { clear: both; width: 100%; height: 1px; background: var(--stone); margin-top: 2.5rem; }
.news-card:last-child .news-divider { display: none; }

/* ========== ACCORDION ========== */
.accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; border-top: 1px solid var(--stone);
  padding: 1.2rem 0; cursor: pointer; text-align: left; margin-top: 1.5rem;
  font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--burgundy);
  transition: color 0.3s;
}
.accordion-toggle:hover,
.accordion-toggle:focus-visible { color: var(--gold); outline: none; }
.accordion-chevron {
  width: 16px; height: 16px; flex-shrink: 0; margin-left: 1rem;
  transition: transform 0.35s ease;
}
.accordion-toggle[aria-expanded="true"] .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.accordion-body.open { opacity: 1; }
.accordion-body-inner { padding: 0.25rem 0 1.5rem; }

/* ========== FOOTER ========== */
footer { background: var(--navy-deep); padding: 4rem 2rem 2rem; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.5rem; font-weight: 600; }
.footer-brand p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }
.footer-monastery { margin-top: 1.5rem; }
.footer-monastery h4 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; font-weight: 600; }
.footer-monastery p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }
.footer-monastery a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-monastery a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; justify-content: center; }
.footer-nav a { color: var(--gold-light); text-decoration: none; font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--gold); outline: none; }
.footer-social { display: inline-flex; align-items: center; margin-top: 0.75rem; color: var(--gold); text-decoration: none; font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); padding: 0.65rem 1.2rem; min-height: 44px; border-radius: 2px; transition: all 0.3s; }
.footer-social:hover,
.footer-social:focus-visible { background: rgba(201,168,76,0.12); border-color: var(--gold); outline: none; }

/* ========== SUB-PAGE HERO ========== */
.page-hero { padding: 5rem 2rem 3rem; }
.page-hero--dark {
  background: var(--navy-deep); text-align: center; position: relative; overflow: hidden;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107,28,42,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.1) 0%, transparent 50%);
}
.page-hero__content { position: relative; }
.page-hero__title {
  font-family: 'Cinzel', serif; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700;
  color: var(--white); letter-spacing: 0.05em; margin-bottom: 1rem;
}
.page-hero__line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto; }

/* ========== RESPONSIVE ========== */

/* --- Nav collapses at wider breakpoint due to 8 items --- */
@media (max-width: 1100px) {
  .nav-inner { display: flex; justify-content: space-between; padding-right: 1.25rem; }
  .nav-hamburger { display: flex; margin-left: 1rem; }
  .lang-toggle { justify-self: unset; margin-left: auto; }
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--navy-deep); border-top: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: none; }
  .nav-links a { padding: 16px 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a::after { display: none; }
}

/* --- Tablet & small desktop (≤ 900px) --- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .picnic-layout { grid-template-columns: 1fr; gap: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .news-image { float: none; max-width: 100%; margin: 1rem 0; }
  .about--ornamented::before { inset: 0.95rem; }
  .about--ornamented::after {
    inset: 1.55rem;
    background-size:
      calc(100% - 11rem) 4.1rem,
      calc(100% - 11rem) 4.1rem,
      4.1rem calc(100% - 11rem),
      4.1rem calc(100% - 11rem);
  }
  .about-vine { width: 190px; opacity: 0.4; }

  /* Reduce section padding on tablets */
  section { padding: 4rem 1.5rem; }
  .services-banner { padding: 4rem 1.5rem; }

  /* Calendar tighter on tablet; stack layout vertically */
  .calendar-layout { grid-template-columns: 1fr; }
  .calendar-header { padding: 1.5rem 1.5rem; }
  .calendar-body { padding: 1.2rem 1.5rem; }

  /* Hero — slightly shorter */
  .hero { min-height: 60vh; min-height: 60dvh; }
  .orthodox-cross-svg { width: 110px; height: 110px; }

  /* Sub-page hero: less top padding */
  .page-hero { padding: 4.5rem 1.5rem 2.5rem; }

  /* Footer tighter */
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { margin-top: 2rem; }
}

/* --- Tablet portrait (≤ 768px) --- */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* --- Phone (≤ 600px) --- */
@media (max-width: 600px) {
  /* Nav: tighter padding on phone */
  .nav-inner { padding: 0 1rem; gap: 0.5rem; }
  .nav-brand-text { font-size: 0.85rem; letter-spacing: 0.12em; }
  .nav-links a { font-size: 0.9rem; }
  .lang-opt { padding: 0 8px; min-height: 44px; font-size: 0.75rem; }

  /* Grids go single-column */
  .services-grid { grid-template-columns: 1fr; }
  .picnic-section { padding: 3rem 1rem; }
  .picnic-feature-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .picnic-list-heading { font-size: 1.12rem; }
  .picnic-list-item { font-size: 1rem; }
  .picnic-contact-prompt { font-size: 1rem; }
  .picnic-contact-line { font-size: 1.02rem; }

  /* Sections: tighter padding */
  section { padding: 3rem 1rem; }
  .services-banner { padding: 3rem 1rem; }
  .section-label { font-size: 0.85rem; letter-spacing: 0.18em; }
  .section-title { font-size: 2.15rem; line-height: 1.15; }
  .about--ornamented::before { inset: 0.55rem; }
  .about--ornamented::after {
    inset: 0.9rem;
    opacity: 0.4;
    background-size:
      calc(100% - 6rem) 3rem,
      calc(100% - 6rem) 3rem,
      3rem calc(100% - 6rem),
      3rem calc(100% - 6rem);
  }
  .about-vine { width: 132px; opacity: 0.28; }
  .about-vine--top-left,
  .about-vine--top-right { top: -0.1rem; }
  .about-vine--bottom-left,
  .about-vine--bottom-right { bottom: -0.1rem; }

  /* Hero: shorter on phones, hide side images */
  .hero { min-height: 55vh; min-height: 55dvh; grid-template-columns: 1fr; }
  .hero-content { padding: 1.5rem 1rem; grid-column: 1; }
  .hero-icon { display: none; }
  .hero-building { display: none; }
  .orthodox-cross-svg { width: 90px; height: 90px; }
  .hero-subtitle-top { font-size: 0.85rem; letter-spacing: 0.22em; margin-bottom: 0.8rem; }
  .hero-address { font-size: 1.15rem; }
  .hero-cta { font-size: 0.82rem; padding: 0.9rem 1.75rem; min-height: 44px; margin-top: 1.5rem; }
  .about-text-full h3 { font-size: 1.85rem; line-height: 1.25; }
  .about-text-full p,
  .service-card p,
  .info-card p,
  .news-body {
    font-size: 1.25rem;
    line-height: 1.78;
  }

  /* Calendar: compact */
  .calendar-header { padding: 1.2rem 1rem; flex-wrap: wrap; gap: 0.75rem; }
  .calendar-month { font-size: 1.4rem; }
  .calendar-body { padding: 1rem; }
  .calendar-sidebar-sub,
  .schedule-event,
  .lenten-table,
  .legend-item { font-size: 1.15rem; }
  .calendar-sidebar-title { font-size: 1.6rem; }
  .schedule-date .day-name,
  .schedule-date .date-num { font-size: 1.3rem; }
  .calendar-nav button { width: 50px; height: 50px; font-size: 1.15rem; }

  /* Service cards: less padding */
  .service-card { padding: 2rem 1.5rem; }
  .service-card h3 { font-size: 1.75rem; }

  /* Info cards: less padding */
  .info-card { padding: 2rem 1.5rem; }
  .info-card h3 { font-size: 1.2rem; }

  /* Footer */
  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-brand h3 { font-size: 1.05rem; }
  .footer-brand p,
  .footer-monastery p { font-size: 1.05rem; }
  .footer-bottom { margin-top: 1.5rem; font-size: 0.95rem; }
  .footer-nav { gap: 0 1.25rem; justify-content: center; }
  .footer-nav a { font-size: 0.8rem; padding: 0.5rem 0; min-height: 44px; display: inline-flex; align-items: center; }


  /* News body max-width: don't constrain on phone */
  .news-body { max-width: 100%; }

  /* Tables: allow horizontal scroll, shrink text */
  .news-card table { font-size: 0.9rem; }
  .news-card td, .news-card th { padding: 0.6rem 0.7rem; }

  /* Sub-page hero: compact on phone */
  .page-hero { padding: 4rem 1rem 2rem; }

  /* Accordion toggle: allow wrapping */
  .accordion-toggle { font-size: 0.82rem; gap: 0.5rem; }

  /* Lenten table: stack rows as cards on phone */
  .lenten-table thead { display: none; }
  .lenten-table,
  .lenten-table tbody,
  .lenten-table tr,
  .lenten-table td { display: block; width: 100%; }
  .lenten-table tr {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--stone);
  }
  .lenten-table td {
    padding: 0.2rem 0 !important;
    border-right: none !important;
    white-space: normal !important;
  }
  .lenten-table td::before {
    content: attr(data-label);
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.6rem;
  }
  .lenten-table td:first-child::before { margin-top: 0; }
}

/* --- Small phone (≤ 380px) --- */
@media (max-width: 380px) {
  .nav-brand-text { font-size: 0.78rem; letter-spacing: 0.08em; }
  .lang-opt { padding: 0 6px; min-height: 44px; font-size: 0.7rem; }
  .hero { min-height: 50vh; min-height: 50dvh; }
  .hero-content { padding: 1rem 0.5rem; }
  .orthodox-cross-svg { width: 75px; height: 75px; }
  section { padding: 2.5rem 0.75rem; }
}

/* ========== GRB CORNER ========== */
.grb-corner {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: auto;
  opacity: 0.88;
  pointer-events: none;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45));
}
@media (max-width: 900px) {
  .grb-corner { width: 160px; right: 1.5rem; }
}
@media (max-width: 600px) {
  .grb-corner { display: none; }
}

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-fade .fade-up { opacity: 0; transform: translateY(24px); }
.js-fade .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
  .hero-content,
  .hero-building-img,
  .hero-saint-icon { animation: none; }
  .fade-up,
  .js-fade .fade-up,
  .js-fade .fade-up.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .service-card,
  .service-card:active { transform: none; }
  .info-card,
  .info-card:active { transform: none; }
}
