/* SaintFiles — shared stylesheet */
/* Generated 2026-05-08 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --navy: #1E2D5A;
            --gold: #C9933A;
            --gold-light: #E8B55A;
            --saint-dark: #1E2D5A;
            --saint-mid: #2A3F7E;
            --saint-light: #C9933A;
            --saint-dark: #5C3317;
            --saint-mid: #8B5E3C;
            --saint-light: #C47B2A;
            --cream: #FAF7F2;
            --cream-dark: #EDE6D9;
            --text: #1A1A2E;
            --text-mid: #4A5568;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --shadow: 0 8px 32px rgba(92,51,23,0.14);
            --shadow-sm: 0 2px 12px rgba(92,51,23,0.09);
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', system-ui, sans-serif;
            background: var(--cream);
            color: var(--text);
            line-height: 1.6;
        }

        /* ── NAV ── */
        nav {
            background: var(--white);
            padding: 0 2.5rem;
            display: flex; align-items: center; justify-content: space-between;
            height: 70px; position: sticky; top: 0; z-index: 100;
            box-shadow: 0 1px 0 rgba(30,45,90,0.08);
        }
        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.55rem; font-weight: 700;
            color: var(--navy); text-decoration: none; letter-spacing: -0.02em;
        }
        .nav-logo span { color: var(--gold); }
        .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
        .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
        .nav-links a:hover { color: var(--navy); }

        /* ── SAINT HERO ── */
        .saint-hero {
            background: linear-gradient(135deg, var(--saint-dark) 0%, var(--saint-mid) 55%, var(--saint-light) 100%);
            color: var(--white);
            padding: 5rem 2.5rem 4rem;
            position: relative; overflow: hidden;
        }
        .saint-hero::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 75% 40%, rgba(255,255,255,0.07) 0%, transparent 60%);
            pointer-events: none;
        }
        .saint-hero-inner {
            max-width: 1140px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr auto;
            gap: 3rem; align-items: end; position: relative;
        }
        .saint-hero-badge {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
            border-radius: 100px; padding: 0.35rem 1rem;
            font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
            text-transform: uppercase; color: #F5D9A8;
            margin-bottom: 1.25rem; backdrop-filter: blur(6px);
        }
        .saint-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 5vw, 3.75rem);
            font-weight: 700; line-height: 1.1; margin-bottom: 0.75rem;
        }
        .saint-hero-dates {
            font-size: 1rem; color: rgba(255,255,255,0.7);
            font-weight: 300; letter-spacing: 0.03em; margin-bottom: 1.5rem;
        }
        .saint-hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .saint-hero-tag {
            background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
            border-radius: 100px; padding: 0.3rem 0.85rem;
            font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.9);
        }
        .saint-hero-icon { font-size: 7rem; opacity: 0.18; line-height: 1; align-self: center; }

        /* ── QUICK FACTS ── */
        .quick-facts { background: var(--white); border-bottom: 1px solid var(--cream-dark); }
        .quick-facts-inner {
            max-width: 1140px; margin: 0 auto;
            padding: 1.5rem 2.5rem;
            display: flex; gap: 3rem; flex-wrap: wrap; align-items: center;
        }
        .fact-item { display: flex; flex-direction: column; gap: 0.2rem; }
        .fact-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
        .fact-value { font-size: 0.925rem; font-weight: 600; color: var(--navy); }

        /* ── AD ── */
        .ad-wrap {
            background: var(--white); padding: 0.75rem 2rem;
            display: flex; justify-content: center;
            border-bottom: 1px solid var(--cream-dark);
        }
        .ad-placeholder {
            background: var(--cream); border: 2px dashed var(--cream-dark);
            border-radius: 8px; display: flex; align-items: center; justify-content: center;
            color: var(--text-light); font-size: 0.75rem; letter-spacing: 0.05em;
        }

        /* ── LAYOUT ── */
        .page-body {
            max-width: 1140px; margin: 0 auto;
            padding: 4rem 2.5rem;
            display: grid; grid-template-columns: 1fr 300px;
            gap: 3.5rem; align-items: start;
        }
        .main-content { min-width: 0; }
        .sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

        /* ── CONTENT BLOCKS ── */
        .content-section { margin-bottom: 3.5rem; }
        .content-eyebrow {
            font-size: 0.75rem; font-weight: 600; letter-spacing: 0.13em;
            text-transform: uppercase; color: var(--saint-light); margin-bottom: 0.6rem;
        }
        .content-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem; font-weight: 700;
            color: var(--navy); margin-bottom: 1.25rem; line-height: 1.25;
        }
        .content-body p {
            font-size: 0.975rem; color: var(--text-mid);
            line-height: 1.8; margin-bottom: 1rem;
        }
        .content-body p:last-child { margin-bottom: 0; }

        /* ── VIRTUE CARDS ── */
        .virtue-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem; margin-top: 1.5rem;
        }
        .virtue-card {
            background: var(--white); border-radius: 12px;
            padding: 1.5rem; box-shadow: var(--shadow-sm);
            border-top: 3px solid var(--saint-mid);
        }
        .virtue-card-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
        .virtue-card-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
        .virtue-card-desc { font-size: 0.845rem; color: var(--text-mid); line-height: 1.6; }

        /* ── SESSION LIST ── */
        .session-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
        .session-item {
            background: var(--white); border-radius: 12px;
            padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm);
            display: flex; gap: 1.25rem; align-items: flex-start;
        }
        .session-num {
            width: 36px; height: 36px; border-radius: 10px;
            background: var(--saint-dark); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
        }
        .session-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.25rem; }
        .session-desc { font-size: 0.865rem; color: var(--text-mid); line-height: 1.6; }

        /* ── LESSON PLAN TABS ── */
        .tab-buttons {
            display: flex; gap: 0; border-bottom: 2px solid var(--cream-dark); margin-bottom: 2rem;
        }
        .tab-btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem; font-weight: 600;
            color: var(--text-light); background: none; border: none;
            border-bottom: 2px solid transparent; margin-bottom: -2px;
            cursor: pointer; transition: color 0.2s, border-color 0.2s; white-space: nowrap;
        }
        .tab-btn:hover { color: var(--navy); }
        .tab-btn.active { color: var(--saint-dark); border-bottom-color: var(--saint-dark); }
        .tab-pane { display: none; }
        .tab-pane.active { display: block; }

        .age-label {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--saint-dark); color: var(--white);
            border-radius: 8px; padding: 0.4rem 1rem;
            font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
            text-transform: uppercase; margin-bottom: 1.75rem;
        }

        .lesson-session { margin-bottom: 2.5rem; }
        .lesson-session-header {
            display: flex; align-items: center; gap: 1rem;
            margin-bottom: 1.25rem; padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--cream-dark);
        }
        .lesson-session-num {
            width: 32px; height: 32px; border-radius: 8px;
            background: var(--saint-mid); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
        }
        .lesson-session-title { font-weight: 700; font-size: 1rem; color: var(--navy); }
        .lesson-session-sub { font-size: 0.82rem; color: var(--text-light); margin-top: 0.1rem; }

        .lesson-block { margin-bottom: 1.25rem; }
        .lesson-block-label {
            font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
            text-transform: uppercase; color: var(--saint-light); margin-bottom: 0.4rem;
        }
        .lesson-block-content {
            font-size: 0.9rem; color: var(--text-mid);
            line-height: 1.7; background: var(--white);
            border-radius: 10px; padding: 1rem 1.25rem; box-shadow: var(--shadow-sm);
        }
        .lesson-block-content ul { padding-left: 1.25rem; }
        .lesson-block-content li { margin-bottom: 0.35rem; }

        /* ── FEAST DAY BANNER ── */
        .feast-banner {
            background: linear-gradient(135deg, var(--saint-dark), var(--saint-mid));
            color: var(--white); border-radius: 16px; padding: 2rem; margin-top: 1.5rem;
        }
        .feast-banner-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem;
        }
        .feast-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 0.75rem; }
        .feast-banner-date {
            display: inline-block; background: rgba(255,255,255,0.15);
            border-radius: 8px; padding: 0.5rem 1rem;
            font-size: 0.875rem; font-weight: 600; color: #F5D9A8;
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* ── CANTICLE BOX ── */
        .canticle-box {
            background: var(--white); border-radius: 16px;
            padding: 2.5rem; box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--saint-mid); margin-top: 1.5rem;
        }
        .canticle-box p {
            font-family: 'Playfair Display', serif; font-style: italic;
            font-size: 1rem; color: var(--text-mid); line-height: 2;
        }
        .canticle-box cite {
            display: block; margin-top: 1.25rem;
            font-size: 0.82rem; font-weight: 600;
            color: var(--saint-mid); font-style: normal;
        }

        /* ── PRAYER ── */
        .prayer-text {
            font-family: 'Playfair Display', serif; font-style: italic;
            font-size: 0.9rem; color: var(--text-mid); line-height: 1.9;
            background: var(--cream); border-radius: 10px;
            padding: 1.5rem; border-left: 3px solid var(--saint-mid);
        }

        /* ── SIDEBAR ── */
        .sidebar-card {
            background: var(--white); border-radius: 14px;
            padding: 1.5rem; box-shadow: var(--shadow-sm);
        }
        .sidebar-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem; font-weight: 700;
            color: var(--navy); margin-bottom: 1rem;
            padding-bottom: 0.75rem; border-bottom: 1px solid var(--cream-dark);
        }
        .sidebar-stat { display: flex; flex-direction: column; gap: 0.8rem; }
        .sidebar-stat-item { display: flex; justify-content: space-between; align-items: center; }
        .sidebar-stat-label { font-size: 0.82rem; color: var(--text-mid); }
        .sidebar-stat-value { font-size: 0.82rem; font-weight: 600; color: var(--navy); text-align: right; max-width: 55%; }

        .resource-item {
            display: flex; gap: 0.85rem; align-items: flex-start;
            margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--cream-dark);
        }
        .resource-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
        .resource-icon {
            width: 38px; height: 38px; border-radius: 8px;
            background: var(--cream); display: flex; align-items: center;
            justify-content: center; font-size: 1rem; flex-shrink: 0;
        }
        .resource-title { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.15rem; }
        .resource-sub { font-size: 0.78rem; color: var(--text-light); }
        .resource-link {
            display: inline-block; margin-top: 0.35rem;
            font-size: 0.78rem; font-weight: 600;
            color: var(--saint-light); text-decoration: none;
        }
        .resource-link:hover { color: var(--navy); }

        /* ── DOWNLOADS ── */
        .download-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem; margin-top: 1.5rem;
        }
        .download-card {
            background: var(--white); border-radius: 14px;
            padding: 1.5rem; box-shadow: var(--shadow-sm);
            border-top: 3px solid var(--saint-mid);
            display: flex; flex-direction: column; gap: 0.6rem;
        }
        .download-card-icon { font-size: 1.6rem; }
        .download-card-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
        .download-card-sub { font-size: 0.8rem; color: var(--text-light); }
        .download-card-cta {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: var(--saint-dark); color: var(--white);
            border-radius: 8px; padding: 0.45rem 1rem;
            font-size: 0.8rem; font-weight: 600; text-decoration: none;
            margin-top: auto; align-self: flex-start; transition: background 0.2s;
        }
        .download-card-cta:hover { background: var(--saint-mid); }
        .dl-item {
            display: flex; gap: 0.85rem; align-items: flex-start;
            margin-bottom: 0.9rem; padding-bottom: 0.9rem;
            border-bottom: 1px solid var(--cream-dark);
        }
        .dl-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
        .dl-badge {
            width: 34px; height: 34px; border-radius: 7px;
            background: var(--cream); display: flex; align-items: center;
            justify-content: center; font-size: 0.9rem; flex-shrink: 0;
        }
        .dl-title { font-weight: 600; font-size: 0.84rem; color: var(--navy); margin-bottom: 0.1rem; }
        .dl-meta { font-size: 0.76rem; color: var(--text-light); }
        .dl-link {
            display: inline-block; margin-top: 0.3rem;
            font-size: 0.76rem; font-weight: 600;
            color: var(--saint-light); text-decoration: none;
        }
        .dl-link:hover { color: var(--navy); }

        /* ── RESPONSIVE ── */
        @media (max-width: 960px) {
            .page-body { grid-template-columns: 1fr; }
            .sidebar { order: -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
            .saint-hero-inner { grid-template-columns: 1fr; }
            .saint-hero-icon { display: none; }
        }
        @media (max-width: 640px) {
            .quick-facts-inner { gap: 1.5rem; padding: 1.25rem 1.5rem; }
            .tab-btn { padding: 0.65rem 1rem; font-size: 0.8rem; }
            nav { padding: 0 1.25rem; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
        }

        /* ── HAMBURGER BUTTON ── */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 200;
        }
        .nav-hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--navy);
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }
        .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-hamburger.open span:nth-child(2) { opacity: 0; }
        .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ── MOBILE DRAWER ── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0; right: 0;
            background: var(--white);
            box-shadow: 0 8px 24px rgba(30,45,90,0.12);
            z-index: 99;
            padding: 1.5rem 2rem 2rem;
            flex-direction: column;
            gap: 0.25rem;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--cream-dark);
            transition: color 0.2s;
        }
        .mobile-menu a:hover { color: var(--navy); }
        .mobile-menu a:last-child { border-bottom: none; }
        .mobile-menu .mobile-cta {
            margin-top: 1rem;
            background: var(--navy);
            color: var(--white) !important;
            text-align: center;
            padding: 0.85rem !important;
            border-radius: 8px;
            font-weight: 600 !important;
            border-bottom: none !important;
        }
        .mobile-menu .mobile-cta:hover { background: var(--gold) !important; }
/* ── SIMPLE PAGE COMPONENTS ── */
.hero {
            background: var(--navy); color: var(--white);
            padding: 5.5rem 2rem 5rem; text-align: center; position: relative; overflow: hidden;
        }
        .hero::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 20% 60%, rgba(201,147,58,0.18) 0%, transparent 55%),
                        radial-gradient(ellipse at 80% 20%, rgba(201,147,58,0.10) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-eyebrow {
            display: inline-block; font-size: 0.78rem; font-weight: 600;
            letter-spacing: 0.14em; text-transform: uppercase;
            color: var(--gold-light); margin-bottom: 1.2rem; position: relative;
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.8rem);
            font-weight: 700; line-height: 1.12;
            margin-bottom: 1rem; position: relative;
        }
        .hero-feast {
            display: inline-block; font-size: 0.88rem; font-weight: 500;
            color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; position: relative;
        }

        .container { max-width: 780px; margin: 0 auto; padding: 3.5rem 2rem 5rem; }

        .coming-card {
            background: var(--white); border-radius: 16px;
            padding: 2.5rem 2rem; text-align: center;
            box-shadow: var(--shadow); margin-bottom: 2rem;
        }
        .coming-icon { font-size: 2.8rem; margin-bottom: 1rem; }
        .coming-card h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem; color: var(--navy); margin-bottom: 0.75rem;
        }
        .coming-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; max-width: 520px; margin: 0 auto 1.5rem; }
        .btn-back {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: var(--navy); color: var(--white);
            padding: 0.75rem 1.75rem; border-radius: 8px;
            font-weight: 600; font-size: 0.9rem; text-decoration: none;
            transition: background 0.2s;
        }
        .btn-back:hover { background: var(--gold); }

        .bio-card {
            background: var(--white); border-radius: 14px;
            padding: 1.75rem 2rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
        }
        .bio-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem;
        }
        .bio-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
        .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
        .tag {
            font-size: 0.72rem; font-weight: 500; background: var(--cream);
            color: var(--text-mid); padding: 0.25rem 0.65rem; border-radius: 20px;
        }

        .ad-banner {
            background: var(--cream-dark); border: 1.5px dashed rgba(30,45,90,0.15);
            border-radius: 10px; height: 90px; display: flex;
            align-items: center; justify-content: center;
            margin: 1.5rem 0; color: var(--text-light); font-size: 0.78rem;
        }

        footer { background: var(--navy); color: rgba(255,255,255,0.55); text-align: center; padding: 3rem 2rem; }
        .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
        .footer-logo span { color: var(--gold-light); }
        footer p { font-size: 0.875rem; margin-bottom: 0.4rem; }
        footer a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
        footer a:hover { color: var(--gold-light); }
        .footer-links { display: flex; gap: 1.75rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

        @media (max-width: 768px) {
            nav { padding: 0 1.25rem; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .hero { padding: 3.5rem 1.25rem 3rem; }
            .container { padding: 2rem 1.25rem 4rem; }
            .coming-card { padding: 2rem 1.25rem; }
        }