/* ============================================================
   FELLOWSHIP OF EVANGELICAL BAPTIST CHURCHES — QUEBEC REGION
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    --primary:        #1B3465;
    --primary-light:  #244484;
    --primary-dark:   #122348;
    --secondary:      #B8932A;
    --secondary-light:#D4AA42;
    --accent:         #2E6B4F;
    --accent-light:   #3a8563;
    --light:          #F9F7F4;
    --light-2:        #F1EEE8;
    --white:          #FFFFFF;
    --dark:           #12121E;
    --text:           #2e2e40;
    --text-muted:     #6b6b82;
    --border:         #E2DDD6;
    --shadow-sm:      0 1px 4px rgba(27,52,101,0.08);
    --shadow:         0 4px 16px rgba(27,52,101,0.10);
    --shadow-lg:      0 12px 40px rgba(27,52,101,0.14);
    --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:      'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm:      3px;
    --radius:         6px;
    --radius-lg:      12px;
    --radius-xl:      20px;
    --transition:     0.28s ease;
    --max-width:      1220px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--secondary); outline-offset: 3px; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    line-height: 1.25;
    color: var(--dark);
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p  { margin-bottom: 1.1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

blockquote {
    border-left: 4px solid var(--secondary);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary);
}
blockquote cite {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    font-style: normal;
    font-family: var(--font-sans);
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}
.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 0.95rem;
}
.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1.5rem;
}

/* Brand */
.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.header-brand img {
    height: 48px;
    width: auto;
    flex-shrink: 0;
}
.brand-text { line-height: 1.2; }
.brand-name-fr {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}
.brand-name-en {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Nav */
.header-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    white-space: nowrap;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 0.5rem clamp(0.45rem, 0.7vw, 0.85rem);
    font-size: clamp(0.72rem, 0.82vw, 0.875rem);
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--transition);
    text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active { color: var(--primary); }
.nav-item.has-dropdown > .nav-link::after {
    content: ' ▾';
    font-size: 0.65em;
    opacity: 0.7;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
    padding: 0.4rem 0;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.dropdown a {
    display: block;
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    white-space: nowrap;
}
.dropdown a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 1.4rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    flex-shrink: 0;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bible-small_11zon.jpg') center/cover no-repeat;
    opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
    display: inline-block;
    background: rgba(184,147,42,0.25);
    color: var(--secondary-light);
    border: 1px solid rgba(184,147,42,0.4);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 640px;
    margin: 0 auto;
}
.page-hero .breadcrumb {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { margin: 0 0.4rem; }

/* ── Homepage Hero ─────────────────────────────────────────── */
.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--primary-dark) 0%, var(--primary) 50%, #1a3a6e 100%);
    color: var(--white);
    overflow: hidden;
}
.home-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/img (1).jpg') center/cover no-repeat;
    opacity: 0.22;
}
.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18,35,72,0.92) 0%, rgba(27,52,101,0.72) 60%, rgba(27,52,101,0.4) 100%);
}
.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--secondary);
}
.home-hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.home-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-light);
    line-height: 1;
}
.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
}

/* ── Section Styles ────────────────────────────────────────── */
.section {
    padding: 5rem 0;
}
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-bg-light { background: var(--light); }
.section-bg-primary {
    background: var(--primary);
    color: var(--white);
}
.section-bg-primary h2,
.section-bg-primary h3,
.section-bg-primary h4 { color: var(--white); }
.section-bg-primary p { color: rgba(255,255,255,0.82); }
.section-bg-dark {
    background: var(--dark);
    color: var(--white);
}
.section-bg-dark h2,
.section-bg-dark h3 { color: var(--white); }
.section-bg-dark p { color: rgba(255,255,255,0.75); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
}
.section-title {
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.card-body { padding: 1.5rem; }
.card-tag {
    display: inline-block;
    background: rgba(27,52,101,0.08);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap var(--transition);
}
.card-link:hover { gap: 0.6rem; }
.card-link::after { content: '→'; }

/* Icon Card */
.icon-card {
    padding: 2rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}
.icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.icon-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(27,52,101,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition);
}
.icon-card:hover .icon {
    background: var(--primary);
    color: var(--white);
}
.icon-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--dark);
}
.icon-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Feature Split Layout ──────────────────────────────────── */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 440px;
}
.feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-content {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}
.feature-content.bg-light { background: var(--light); }

/* ── Stat Bar ───────────────────────────────────────────────── */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--primary);
}
.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-light);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    margin-top: 0.4rem;
    display: block;
}

/* ── Testimonial / Quote Band ──────────────────────────────── */
.quote-band {
    background: var(--primary);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.quote-band::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 12rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    pointer-events: none;
}
.quote-band blockquote {
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}
.quote-band cite {
    font-style: normal;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-light);
}

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding: 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-bottom: 2.5rem;
    align-items: center;
}
.timeline-item:nth-child(even) .timeline-content-left { order: 3; }
.timeline-item:nth-child(even) .timeline-content-right { order: 1; text-align: right; }
.timeline-dot {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--primary);
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-sans);
}
.timeline-content {
    padding: 0 1.5rem;
}
.timeline-content h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 0.4rem;
}
.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Team Grid ──────────────────────────────────────────────── */
.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.1rem;
    border: 3px solid var(--light-2);
}
.team-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    font-size: 2.2rem;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-serif);
    font-style: italic;
}
.team-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.team-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}
.team-bio {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: all var(--transition);
    color: var(--text-muted);
}
.faq-item.open .faq-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Events ─────────────────────────────────────────────────── */
.event-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.event-date-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 0.75rem 0.5rem;
    text-align: center;
    flex-shrink: 0;
}
.event-day {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-light);
    line-height: 1;
}
.event-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    margin-top: 0.2rem;
}
.event-info h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.event-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.event-meta span::before { margin-right: 0.2rem; }
.event-desc { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── News ───────────────────────────────────────────────────── */
.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.news-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 1.5rem; }
.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.news-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.news-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* ── Contact Form ───────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.form-label span { color: var(--secondary); }
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,52,101,0.1);
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.7; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b82' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ── Info Boxes ─────────────────────────────────────────────── */
.info-box {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--light);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.info-box.primary {
    background: rgba(27,52,101,0.06);
    border-color: rgba(27,52,101,0.15);
}
.info-box h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.info-box p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── Contact Info ───────────────────────────────────────────── */
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(27,52,101,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--primary);
}
.contact-text strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.contact-text span, .contact-text a {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}
.contact-text a:hover { color: var(--primary); text-decoration: underline; }

/* ── Ribbon / Banner CTA ────────────────────────────────────── */
.cta-ribbon {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-ribbon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255,255,255,0.03);
    transform: rotate(-15deg);
}
.cta-ribbon h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-ribbon p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 1.75rem; }

/* ── Badge / Pill ───────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-primary { background: rgba(27,52,101,0.1); color: var(--primary); }
.badge-secondary { background: rgba(184,147,42,0.15); color: var(--secondary); }
.badge-accent { background: rgba(46,107,79,0.1); color: var(--accent); }

/* ── Resource Cards ─────────────────────────────────────────── */
.resource-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}
.resource-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.resource-icon {
    width: 44px;
    height: 44px;
    background: rgba(27,52,101,0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary);
}
.resource-info h5 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.resource-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
}
.footer-main {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 1;
}
.footer-org-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    display: block;
}
.footer-org-name-en {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 1rem;
}
.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 0;
}
.footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary-light);
    margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    text-decoration: none;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.6rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.footer-contact-item strong {
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-registry {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

/* ── Dividers ───────────────────────────────────────────────── */
.divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 3rem 0;
}
.divider-light {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
