/* ===== CSS VARIABLES ===== */
:root {
    --saffron: #C42526;
    --saffron-deep: #C42526;
    --saffron-glow: #C42526;
    --saffron-pale: #F9ECEC;
    --saffron-light: #EFC9C9;
    --gold: #C42526;
    --gold-light: #FEFEFE;
    --maroon: #C42526;
    --maroon-deep: #C42526;
    --cream: #FEFEFE;
    --cream-dark: #F5F0F0;
    --text-dark: #2B2A29;
    --text-mid: #4A3A3A;
    --text-light: #7A6060;
    --white: #FEFEFE;
    --shadow-warm: 0 4px 24px rgba(196, 37, 38, 0.15);
    --shadow-deep: 0 12px 48px rgba(43, 42, 41, 0.18);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    /* Extra bottom padding for sticky social bar */
    padding-bottom: 52px;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===== DECORATIVE BACKGROUND ===== */
.mandala-bg {
    position: fixed;
    top: 0;
    right: -20vw;
    width: 60vw;
    height: 100vh;
    background-image: radial-gradient(circle at 50% 50%, rgba(196, 37, 38, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: rotateSlow 60s linear infinite;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(248, 237, 225, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196, 37, 38, 0.15);
    transition: box-shadow var(--transition);
    overflow: visible;
}

#navbar.scrolled {
    box-shadow: 0 2px 24px rgba(196, 37, 38, 0.12);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-logo-img img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon);
    line-height: 1.2;
}

.nav-sub {
    font-size: 0.68rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 0.15rem;
    list-style: none;
}

.nav-links a {
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--saffron);
    background: var(--saffron-pale);
}

/* Donate link special styling */
.nav-links a[data-page="donate"] {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(196, 37, 38, 0.3);
}

.nav-links a[data-page="donate"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 37, 38, 0.4);
    background: linear-gradient(135deg, var(--saffron-glow), var(--saffron));
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-mid);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 100px 0 0 0;
    background: rgba(248, 237, 225, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark);
    padding: 0.4rem 2rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.mobile-menu a:hover {
    color: var(--saffron);
    background: var(--saffron-pale);
}

.mobile-menu a[data-page="donate"] {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white) !important;
    border-radius: 50px;
}

/* ===== MARQUEE ===== */
.marquee-strip {
    background: linear-gradient(90deg, var(--maroon), var(--saffron-deep), var(--maroon));
    color: var(--gold-light);
    padding: 0.55rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marquee-inner {
    display: inline-block;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-inner span {
    margin: 0 3rem;
}

.marquee-inner .dot {
    color: var(--gold-light);
    font-size: 1rem;
}

/* ===== PAGES ===== */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* ===== HOME HERO ===== */
.home-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* fallback if image hasn't loaded yet */
    background-color: var(--cream);
}

/* Warm overlay so text stays sharp over the photo */
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(254, 246, 238, 0.68);
    pointer-events: none;
    z-index: 0;
}

/* Lift all children above the overlay */
.home-hero>* {
    position: relative;
    z-index: 1;
}

/* ===== MONOGRAM BACKGROUND SYMBOL (replaces OM text) ===== */
.om-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(220px, 40vw, 420px);
    height: clamp(220px, 40vw, 420px);
    pointer-events: none;
    user-select: none;
    opacity: 0.07;
    animation: pulseOm 4s ease-in-out infinite;
    z-index: 0;
}

.om-symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(1) saturate(3) hue-rotate(340deg) brightness(0.6);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.4rem 1.2rem;
    background: var(--saffron-pale);
    border: 1px solid var(--saffron-light);
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--saffron-deep);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
    position: relative;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--maroon);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1rem;
    animation: fadeUp 0.9s 0.1s ease both;
    position: relative;
}

.hero-title span {
    color: var(--saffron);
    font-style: italic;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    max-width: 640px;
    animation: fadeUp 1s 0.2s ease both;
    position: relative;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    animation: fadeUp 1.1s 0.3s ease both;
    line-height: 1.8;
    position: relative;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 1.2s 0.4s ease both;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn-primary {
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 20px rgba(196, 37, 38, 0.35);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(254, 254, 254, 0.15);
    transform: translateX(-100%);
    transition: transform var(--transition);
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 37, 38, 0.45);
}

.btn-secondary {
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--maroon);
    border: 1.5px solid var(--maroon);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.92rem;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--maroon);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 32, 38, 0.25);
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--maroon-deep);
    padding: 3.5rem 2rem;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--cream);
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(254, 254, 254, 0.5);
    margin-top: 0.4rem;
}

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    border-radius: 3px;
    margin: 1.5rem 0;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: var(--monogram-bg-url, none);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
    max-width: 760px;
    margin: 0 auto 1.2rem;
    line-height: 1.4;
}

.quote-attribution {
    color: rgba(254, 254, 254, 0.5);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

/* ===== EVENTS ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem;
    border: 1px solid rgba(196, 37, 38, 0.1);
    display: flex;
    gap: 1.2rem;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(196, 37, 38, 0.25);
}

.event-date {
    min-width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--saffron-pale), var(--saffron-light));
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--saffron-deep);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}

.event-date .date-day {
    font-size: 1.4rem;
    line-height: 1;
}

.event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.3rem;
}

.event-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* events-grid kept for potential reuse elsewhere */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.calendar-only-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.calendar-img-wrap {
    max-width: 560px;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--saffron-light);
    box-shadow: var(--shadow-deep);
    position: relative;
    background: var(--saffron-pale);
}

.calendar-img-wrap img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.calendar-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(175, 32, 38, 0.85));
    color: var(--gold-light);
    padding: 2rem 0.8rem 0.7rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.06em;
}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 2rem 5rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron-light), transparent);
}

.page-hero-eye {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    border-radius: 3px;
    margin: 1.2rem auto 0;
}

.donate-hero {
    background: linear-gradient(160deg, var(--maroon-deep) 0%, var(--maroon) 100%);
}

.donate-hero h1,
.donate-hero p {
    color: var(--white) !important;
}

.donate-hero .section-tag {
    color: var(--gold-light);
}

.donate-hero .section-tag::before {
    background: var(--gold-light);
}

.donate-hero .page-hero-eye {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* ===== ABOUT TWO COL ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-pill {
    padding: 1.4rem;
    background: var(--saffron-pale);
    border-radius: var(--radius);
    border-left: 4px solid var(--saffron);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--maroon);
    line-height: 2;
}

.contact-pill a {
    color: var(--saffron);
}

.teachings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.teaching-card {
    background: var(--saffron-pale);
    border: 1px solid var(--saffron-light);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: all var(--transition);
}

.teaching-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-warm);
    transform: translateY(-3px);
}

.teaching-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.teaching-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--maroon);
}

.teaching-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

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

.value-card {
    border-left: 3px solid var(--saffron);
    padding: 1.4rem 1.4rem 1.4rem 1.6rem;
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-warm);
}

.value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
}

.value-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 0.4rem;
    line-height: 1.6;
}

.history-box {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: var(--cream);
    border-radius: var(--radius);
    padding: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.history-box::before {
    content: '🛕';
    position: absolute;
    bottom: -1rem;
    right: 2rem;
    font-size: 8rem;
    opacity: 0.07;
}

/* ===== HISTORY TIMELINE — alternating ===== */
.timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

/* Centre vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, var(--saffron), var(--gold), var(--maroon));
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 3.5rem;
    position: relative;
    align-items: start;
}

/* The dot in the middle column */
.timeline-dot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.4rem;
    position: relative;
    z-index: 2;
}

.timeline-dot::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--saffron);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 3px var(--saffron);
    flex-shrink: 0;
}

/* Year label */
.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
}

/* Card */
.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(196, 37, 38, 0.08);
    transition: all var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-warm);
    border-color: rgba(196, 37, 38, 0.2);
}

.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.timeline-body {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ODD items: card LEFT · dot CENTRE · year RIGHT */
.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-dot {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
    grid-column: 3;
    grid-row: 1;
    padding-left: 1.4rem;
    padding-top: 1.2rem;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content:hover {
    transform: translateX(-6px);
}

/* EVEN items: year LEFT · dot CENTRE · card RIGHT */
.timeline-item:nth-child(even) .timeline-year {
    grid-column: 1;
    grid-row: 1;
    padding-right: 1.4rem;
    padding-top: 1.2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-dot {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(6px);
}

/* Saints grid in History */
.saints-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.saint-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(196, 37, 38, 0.08);
    transition: all var(--transition);
}

.saint-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.saint-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin: 1rem 0 0.3rem;
}

.saint-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--saffron);
    font-weight: 600;
}

.saint-card-bio {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    line-height: 1.7;
}

.saint-img-round {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 4px 20px rgba(200, 150, 12, 0.3);
    background: var(--saffron-pale);
}

.saint-img-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ===== WHAT WE DO ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(196, 37, 38, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.program-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
}

.program-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.7rem;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.program-details {
    list-style: none;
    padding: 0;
}

.program-details li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(196, 37, 38, 0.08);
}

.program-details li:first-child {
    border-top: none;
}

.program-details li::before {
    content: '✦';
    color: var(--saffron);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: var(--monogram-bg-url, none);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    animation: pulseOm 5s ease-in-out infinite;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(254, 254, 254, 0.85);
    max-width: 540px;
    margin: 0 auto 2rem;
}

.btn-white {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--white);
    color: var(--saffron-deep);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all var(--transition);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ===== DONATE PAGE ===== */
.donate-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.donate-reason-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(196, 37, 38, 0.08);
    transition: all var(--transition);
}

.donate-reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-warm);
}

.donate-reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.donate-reason-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.donate-reason-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.donate-method-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all var(--transition);
}

.donate-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
}

.donate-method-header {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.donate-method-icon {
    font-size: 2rem;
}

.donate-method-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.donate-method-body {
    background: var(--white);
    padding: 1.6rem 1.8rem;
}

.donate-method-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.donate-method-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 0.3rem;
}

.donate-method-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.tax-notice {
    background: linear-gradient(135deg, var(--saffron-pale), var(--cream));
    border: 1px solid var(--saffron-light);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tax-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

/* ===== SAINTS BANNER (above footer) ===== */
/* ===== FOOTER LOGO BANNER ===== */
.footer-logo-banner {
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 2rem;
}

.footer-logo-banner img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo-banner img {
        max-width: 100%;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: rgba(254, 254, 254, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(254, 254, 254, 0.08);
}

.footer-logo-wrap {
    background: #FEFEFE;
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    display: inline-block;
    margin-bottom: 1.2rem;
    max-width: 260px;
}

.footer-logo-wrap img {
    width: 5rem;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.footer-tagline {
    font-size: 0.84rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.88rem;
    transition: color var(--transition);
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--saffron);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hour-row {
    display: flex;
    flex-direction: column;
}

.hour-day {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(254, 254, 254, 0.4);
}

.hour-time {
    font-size: 0.88rem;
    color: rgba(254, 254, 254, 0.8);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.footer-contact a {
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--saffron);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(254, 254, 254, 0.35);
}

/* ===== STICKY SOCIAL BAR ===== */
.sticky-social {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 52px;
    background: rgba(26, 15, 0, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(196, 37, 38, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.sticky-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 1.4rem;
    height: 52px;
    color: rgba(254, 254, 254, 0.65);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right: 1px solid rgba(254, 254, 254, 0.06);
    transition: all var(--transition);
    font-weight: 500;
}

.sticky-social-link:last-child {
    border-right: none;
}

.sticky-social-link:hover {
    color: var(--gold-light);
    background: rgba(196, 37, 38, 0.15);
}

.sticky-social-icon {
    font-size: 1.1rem;
}

.sticky-donate-link {
    margin-left: 1rem;
    padding: 0 1.6rem;
    height: 36px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem !important;
    border-right: none !important;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px rgba(196, 37, 38, 0.4);
    align-self: center;
}

.sticky-donate-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(196, 37, 38, 0.5);
}

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

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pulseOm {

    0%,
    100% {
        opacity: 0.10;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.16;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .teachings-grid {
        grid-template-columns: 1fr;
    }

    .saints-grid {
        grid-template-columns: 1fr;
    }

    .calendar-img-wrap {
        width: 100%;
    }

    /* Timeline — collapse to single-side on tablet */
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content:hover,
    .timeline-item:nth-child(even) .timeline-content:hover {
        transform: translateX(4px);
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0.4rem;
        font-size: 1rem;
    }

    .sticky-social-link span:not(.sticky-social-icon) {
        display: none;
    }

    .sticky-social-link {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 4rem 1.2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .saints-banner-inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.8rem;
    }

    .donate-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NAVBAR — logo only, flat image ===== */
.nav-brand {
    gap: 0;
}

.nav-logo-img {
    width: auto;
    height: 265px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-logo-img img {
    height: 100px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: none;
}

/* Tablet (769px – 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {

    .nav-logo-img,
    .nav-logo-img img {
        height: 120px;
        max-width: 220px;
    }

    #navbar {
        height: 104px;
    }

    .marquee-strip {
        margin-top: 104px !important;
    }

    .mobile-menu {
        top: 104px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    #navbar {
        height: 72px;
        padding: 0 1.2rem;
    }

    .nav-logo-img,
    .nav-logo-img img {
        height: 52px;
        max-width: 180px;
    }

    .mobile-menu {
        top: 72px;
    }
}

#nav-title,
#nav-sub {
    display: none;
}

/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
    background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 55%, #a81e1f 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.vision-mission-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(254, 254, 254, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    min-height: 380px;
    position: relative;
    z-index: 1;
}

.vm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 4rem;
}

.vm-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(254, 254, 254, 0.55);
    font-weight: 600;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-tag::before,
.vm-tag::after {
    content: '';
    display: block;
    flex: 1;
    max-width: 28px;
    height: 1px;
    background: rgba(254, 254, 254, 0.3);
}

.vm-card h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.4rem;
    max-width: 400px;
}

.vm-card p {
    color: rgba(254, 254, 254, 0.65);
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.92rem;
    line-height: 1.85;
    max-width: 380px;
}

.vm-divider {
    background: linear-gradient(to bottom, transparent 5%, rgba(254, 254, 254, 0.2) 30%, rgba(254, 254, 254, 0.2) 70%, transparent 95%);
    align-self: stretch;
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 4rem 2rem;
    }

    .vm-divider {
        height: 1px;
        width: 60%;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, rgba(254, 254, 254, 0.2), transparent);
        align-self: auto;
    }
}