* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --cream: #F7F4EF;
  --cream-dark: #EDE8DE;
  --gold: #9B7D3A;
  --gold-light: #B89850;
  --violet: #7A6FA0;
  --violet-light: #9B90BF;
  --violet-pale: #EAE7F2;
  --violet-dark: #5C5285;
  --text: #1A1520;
  --text-mid: #3D3530;
  --text-light: #7A7070;
  --white: #FFFFFF;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
header {
  position: fixed;
	top: 0;
	left: 0;
	z-index: 2;

	width: 100%;

	padding: 0 5vw;

	background-color: var(--cream);
  border-bottom: 1px solid rgba(155,125,58,0.15);
}

#navbar {
	width: 100%;
	height: 60px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

#nav-toggle {
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid transparent;
	background-color: var(--cream);

	@media screen and (min-width: 870px) {
		display: none;
	}
}

#nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.5;
  letter-spacing: 0.15em;
  display: block;
	text-wrap: nowrap;
}

nav {
	min-width: 520px;
	align-items: center;
	justify-content: space-evenly;
	display: none;

	@media screen and (min-width: 870px) {
		display: flex;
	}

	&.open {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 0.5rem;
		padding: 0.5rem 0;
	}

	a {
		font-family: 'Cinzel', serif;
		font-size: 0.58rem;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: var(--text-mid);
		text-decoration: none;
		transition: color 0.25s;

		&:hover { color: var(--gold); }
	}
}

#nav-flags {
  display: flex;
  align-items: center;
	gap: 0.4rem;

	@media (min-width: 870px) {
		gap: 0.5rem;
	}
}

.nav-flag-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  line-height: 0;
  border-radius: 1px;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0.65;

	&:hover { opacity: 1; transform: translateY(-1px); }
	&.active { opacity: 1 }
	&.active .nav-flag {
		outline: 2px solid var(--gold-light);
		outline-offset: 2px;
	}
}

.nav-flag {
	width: 20px;
  height: auto;
  display: block;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);

	@media (min-width: 870px) {
		width: 24px;
	}
}

/* ── HERO ── */
.hero {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-text {
  text-align: center;
  padding: 5rem 2rem 4rem;
  background: var(--violet-dark);
  color: var(--white);
}
.hero-text .hero-title { color: var(--white); }
.hero-text .hero-subtitle { color: rgba(255,255,255,0.85); }
.hero-text .hero-location { color: rgba(255,255,255,0.55); }
.hero-text .hero-rule { background: var(--gold-light); }
.hero-text .hero-blurb { color: rgba(255,255,255,0.75); }

.hero-cross {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.hero-cross img {
  width: 160px;
  height: auto;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.hero-formerly {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 220, 160, 0.85);
  margin-top: 0.4rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero-location {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.hero-blurb {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  max-width: 480px;
  margin: 2.5rem auto 0;
  line-height: 2;
}

.hero-est {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 220, 160, 0.75);
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  position: relative;
}
.hero-est::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(255, 220, 160, 0.4);
  margin: 0 auto 1.5rem;
}



.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 0.4rem;
  flex-wrap: nowrap;
}
.title-row .hero-title {
  margin-bottom: 0 !important;
}
.flag-side {
  width: 90px !important;
  height: auto !important;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35)) drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

@media (max-width: 768px) {
  .title-row { gap: 0.8rem; }
  .flag-side { width: 50px !important; }
}

.hero-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}
.hero-flags .flag-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-flags .flag {
  width: 64px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35)) drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}
.hero-flags .flag-label {
  font-family: 'Cinzel', serif;
  font-size: 0.42rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-flags .flag-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,210,140,0.45), transparent);
  margin: 0 0.4rem;
}

.hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

/* ── SHARED ── */
.inner { max-width: 960px; margin: 0 auto; padding: 0 2.5rem; }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
}


/* ── ST GEORGE PATRON ── */
.patron-frame {
  display: block;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.35);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.patron-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(155,125,58,0.2);
  pointer-events: none;
}
.patron-frame img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}
.patron-caption {
  margin-bottom: 1.5rem;
  text-align: center;
}
.patron-caption .romanian {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--violet);
  display: block;
}
.patron-caption .english {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
  display: block;
}

/* ── ABOUT ── */
#about { padding: 6rem 0 5rem; background: var(--cream); }

/* About Navigation Container */
.about-nav-container {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.about-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Links hidden by default, shown on hover */
.about-nav-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 0 1rem;
}

.about-nav-container:hover .about-nav-links {
  max-height: 100px;
  transition: max-height 0.3s ease-in;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(155,125,58,0.2);
}

.about-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.about-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* About Subsections */
.about-subsection {
  padding: 4rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(155,125,58,0.1);
}

.subsection-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--violet-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.subsection-content {
  max-width: 720px;
  margin: 0 auto;
}

.subsection-content p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}

/* ── WELCOME SECTION (between hero and church photo) ── */
.welcome-section {
  background: var(--cream);
  padding: 5rem 2rem 4rem;
}
.welcome-section .welcome-intro {
  margin: 0 auto;
  max-width: 720px;
}

/* ── WELCOME INTRO ── */
.welcome-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.welcome-intro .section-eyebrow { text-align: center; }
.welcome-intro .section-title { text-align: center; margin-bottom: 1.5rem; }
.welcome-intro .welcome-text p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}
.welcome-intro .welcome-text p:first-child {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
}

/* ── SCHEDULE CARD (replaces services section) ── */
.schedule-card {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.25);
  border-top: 3px solid var(--gold);
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.schedule-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(155,125,58,0.2);
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(155,125,58,0.1);
  gap: 1rem;
}
.schedule-row:last-of-type { border-bottom: none; }
.sch-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
}
.sch-time {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  text-align: right;
}
.schedule-note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(155,125,58,0.15);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.welcome-text { margin-top: 2rem; }
.welcome-text p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.welcome-text p:first-child {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
}

.info-card {
  margin-top: 2rem;
  background: var(--violet-pale);
  padding: 2.2rem 2rem;
  border-left: 3px solid var(--violet);
}
.info-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(122,111,160,0.2);
}
.info-row { margin-bottom: 1.2rem; }
.info-row:last-child { margin-bottom: 0; }
.info-row .lbl {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 0.2rem;
}
.info-row .val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
}

/* ── ICON ── */
.icon-section {
  padding: 4rem 0;
  background: var(--cream-dark);
  text-align: center;
  border-top: 1px solid rgba(155,125,58,0.12);
  border-bottom: 1px solid rgba(155,125,58,0.12);
}
.icon-wrap {
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 12px;
  border: 1px solid rgba(155,125,58,0.3);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.icon-wrap img { display: block; width: 240px; height: auto; }
.icon-caption {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light);
}

/* ── FEATURE BANNER ── */
.feature-banner {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
}
.feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,21,32,0.15), rgba(26,21,32,0.55));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.feature-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 700px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.feature-cite {
  margin-top: 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── SERVICES ── */
#services { padding: 6rem 0; background: var(--cream); }

.services-table {
  margin-top: 2.5rem;
  width: 100%;
  border-collapse: collapse;
}
.services-table thead tr { border-bottom: 1px solid var(--violet); }
.services-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  padding: 0 0 0.8rem;
  text-align: left;
  font-weight: 400;
}
.services-table th:last-child { text-align: right; }
.services-table tbody tr { border-bottom: 1px solid rgba(155,125,58,0.12); }
.services-table td {
  padding: 1.2rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--text-mid);
}
.services-table td:first-child {
  font-style: italic;
  color: var(--text);
}
.services-table td:last-child { text-align: right; }

.services-note {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--violet-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-light);
  background: var(--violet-pale);
}

/* ── GALLERY ── */
#photos { padding: 6rem 0; background: var(--cream-dark); }

.gallery-intro {
  margin-top: 1rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid rgba(155,125,58,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: border-color 0.25s;
}
.gallery-item:hover { border-color: rgba(155,125,58,0.4); }
.gallery-item .g-icon { font-size: 1.5rem; opacity: 0.15; color: var(--gold); }
.gallery-item .g-text {
  font-family: 'Cinzel', serif;
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.5;
}
.gallery-photo { padding: 0; overflow: hidden; }
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-photo:hover img { transform: scale(1.04); }

/* ── DONATE ── */
#donate {
  padding: 6rem 0;
  background: var(--violet-pale);
  border-top: 3px solid var(--violet);
  border-bottom: 3px solid var(--violet);
}

.donate-text {
  margin-top: 1.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.donate-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.donate-box {
  background: var(--white);
  border: 1px solid rgba(122,111,160,0.2);
  padding: 1.8rem 2.2rem;
  flex: 1;
  min-width: 200px;
}
.donate-box .db-label {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.4rem;
}
.donate-box .db-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--text);
}


.donate-box-bank .db-account-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.donate-box-bank .db-account-number {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--violet-dark);
  font-weight: 500;
}

.donate-footer {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
}

/* ── CONTACT ── */
#contact { padding: 6rem 0; background: var(--cream); }

.contact-grid {
  margin-top: 2rem;
}

.contact-item { margin-bottom: 1.8rem; }
.contact-item .ci-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item .ci-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(155,125,58,0.3);
}
.contact-item a:hover { border-color: var(--gold); }

#map {
	margin-top: 0.9rem;
  background: var(--violet-pale);
  border: 1px solid rgba(122,111,160,0.2);
  height: 280px;
	width: 80%;
}
/* ── FOOTER ── */
footer {
  background: var(--violet-dark);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-brand span {
  display: block;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
}
.footer-cross { font-size: 1.3rem; color: rgba(255,255,255,0.2); }
.footer-copy {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
  .welcome-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-row { flex-direction: column; }
  .footer-inner { justify-content: center; text-align: center; }
  .inner { padding: 0 1.3rem; }
  .hero-image img { height: 380px; object-position: center 15%; }
  .feature-banner { height: 320px; }
}
/* ── LITURGICAL CALENDAR ── */
#calendar {
  padding: 6rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(155,125,58,0.15);
}
#calendar .inner { max-width: 1100px; }
.cal-header { text-align: center; margin-bottom: 2.5rem; }

/* Fast & feast colors */
.cal-fast-strict { color: #8B4A4A; }
.cal-fast-fish { color: #5C7A8B; }
.cal-fast-oil { color: #A88B5C; }
.cal-feast-major { color: var(--gold); }
.cal-feast-great { color: #7A4A8B; }

.month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 1.5rem;
  background: var(--violet-dark);
  padding: 1rem 1.5rem;
  color: var(--white);
}
.month-nav button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.month-nav button:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-light); }
.month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
}
.month-label .year {
  font-style: italic;
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  margin-left: 0.6rem;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.2);
  margin-bottom: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.cal-legend-item { display: flex; align-items: center; gap: 0.5rem; }
.cal-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cal-dot-strict { background: #8B4A4A; }
.cal-dot-fish { background: #5C7A8B; }
.cal-dot-oil { background: #A88B5C; }
.cal-dot-feast { background: var(--gold); }
.cal-dot-great { background: #7A4A8B; }
.cal-dot-liturgy {
  background: transparent !important;
  border: 2px solid var(--gold);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--cream-dark);
  border: 1px solid rgba(155,125,58,0.25);
  gap: 1px;
}
.cal-day-label {
  background: var(--violet-pale);
  text-align: center;
  padding: 0.7rem 0.4rem;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-dark);
}
.cal-day {
  background: var(--white);
  min-height: 110px;
  padding: 0.6rem;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
}
.cal-day:hover { background: var(--cream); }
.cal-day.empty { background: var(--cream-dark); cursor: default; }
.cal-day.empty:hover { background: var(--cream-dark); }
.cal-day.today {
  background: var(--violet-pale);
  box-shadow: inset 0 0 0 2px var(--violet);
}
.day-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.day-num.sunday { color: var(--violet-dark); font-weight: 600; }
.day-feast {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.day-feast.great { color: #7A4A8B; font-weight: 600; }
.day-fast {
  font-family: 'Cinzel', serif;
  font-size: 0.42rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 0.3rem;
  color: var(--text-light);
}
.day-marks {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.25rem;
}
.day-marks .mark { width: 8px; height: 8px; border-radius: 50%; }
.day-marks .mark.liturgy {
  background: transparent;
  border: 2px solid var(--gold);
  width: 10px;
  height: 10px;
}
.priest-msg-preview {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: var(--gold);
  line-height: 1.2;
  margin-top: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.priest-mode-bar {
  background: var(--violet-pale);
  border: 1px solid rgba(122,111,160,0.3);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.priest-mode-toggle {
  background: transparent;
  border: 1px solid var(--violet);
  color: var(--violet-dark);
  padding: 0.5rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.priest-mode-toggle.active { background: var(--violet-dark); color: var(--white); border-color: var(--violet-dark); }

/* Modal */
.cal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,21,32,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.cal-modal-backdrop.active { display: flex; }
.cal-modal {
  background: var(--cream);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(155,125,58,0.3);
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cal-modal-header {
  background: var(--violet-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cal-modal-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
}
.cal-modal-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
}
.cal-modal-close:hover { opacity: 1; }
.cal-modal-body { padding: 2rem; }
.cal-modal-section { margin-bottom: 1.8rem; }
.cal-modal-section h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(155,125,58,0.2);
}
.cal-modal-section p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.feast-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.feast-name.great { color: #7A4A8B; font-weight: 600; }
.fast-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.fast-badge.strict { background: #8B4A4A; }
.fast-badge.fish { background: #5C7A8B; }
.fast-badge.oil { background: #A88B5C; }
.priest-note-box {
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.25);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-wrap;
  min-height: 60px;
}
.priest-note-box.empty { color: var(--text-light); font-style: italic; }
.note-actions { display: flex; gap: 0.5rem; margin-top: 0.8rem; flex-wrap: wrap; }
.note-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.2s;
}
.note-btn:hover { background: var(--gold); color: var(--white); }
.note-btn.danger { border-color: #8B4A4A; color: #8B4A4A; }
.note-btn.danger:hover { background: #8B4A4A; color: var(--white); }
.note-edit-wrap { display: none; }
.note-edit-wrap.active { display: block; }
.note-edit-wrap textarea {
  width: 100%;
  min-height: 90px;
  padding: 0.8rem 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.3);
  border-left: 3px solid var(--gold);
  resize: vertical;
  color: var(--text);
}

@media (max-width: 700px) {
  .cal-day { min-height: 70px; padding: 0.4rem 0.3rem; }
  .day-num { font-size: 0.95rem; }
  .day-feast, .day-fast, .priest-msg-preview { display: none; }
  .month-nav { flex-direction: column; gap: 0.8rem; }
  .cal-legend { font-size: 0.45rem; gap: 0.7rem; }
}

/* ── EVENTS PAGE ── */
.events-section { padding: 5rem 0; background: var(--cream); }
.events-intro {
  max-width: 720px;
  margin: 2rem auto;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.month-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.15);
}

.month-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(155,125,58,0.3);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
}

.month-btn:hover { border-color: var(--gold); color: var(--gold); }
.month-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.events-timeline {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-helper {
  margin-top: 2rem;
  padding: 1.8rem 1.6rem;
  background: rgba(155,125,58,0.08);
  border: 1px solid rgba(155,125,58,0.18);
  border-radius: 10px;
  color: var(--text-mid);
}

.year-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 2rem 0 0;
}

.year-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid rgba(155,125,58,0.3);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.25s;
}

.year-btn:hover { border-color: var(--gold); color: var(--gold); }
.year-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.schedule-helper h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.schedule-helper p,
.schedule-helper ul {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.8;
}

.schedule-helper ul {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
}

.schedule-helper li {
  margin-bottom: 0.5rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(155,125,58,0.15);
  border-left: 4px solid var(--gold);
  transition: all 0.25s;
}

.event-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.event-item.event-major { border-left-color: var(--gold); }
.event-item.event-feast { border-left-color: var(--violet); }
.event-item.event-fast { border-left-color: #8B4A4A; }
.event-item.event-patronal { border-left-color: #7A4A8B; background: rgba(122,75,139,0.03); }

.event-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  aspect-ratio: 1;
  background: var(--violet-pale);
  border-radius: 50%;
}

.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--violet-dark);
}

.event-content { flex: 1; }
.event-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.4rem;
}
.event-type-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  margin: 0;
}

.event-time {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.service-times {
  padding: 6rem 0;
  background: var(--violet-pale);
  border-top: 3px solid var(--violet);
  border-bottom: 3px solid var(--violet);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--violet);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--violet-dark);
  margin-bottom: 1rem;
}

.service-time {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .year-selector,
  .month-selector { gap: 0.5rem; }
  .year-btn,
  .month-btn { padding: 0.5rem 0.8rem; font-size: 0.5rem; }
  .event-item { flex-direction: column; gap: 1rem; }
  .event-heading { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
}


