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

/* ===== CSS Variables ===== */
:root {
    --navy: #123b5a;
    --navy-dark: #0e2f47;
    --navy-light: #1e5f8e;
    --gold: #f0edb4;
    --gold-dark: #8b6914;
    --gold-mid: #c9a227;
    --text: #1a2332;
    --text-light: #555;
    --border: #e8e8e8;
    --bg-soft: #fafaf8;
    --bg-cream: #f7f5e8;
}

html { scroll-behavior: smooth; }

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

body {
    font-family: 'Lora', Georgia, serif;
    background: #fff;
    color: var(--text);
    line-height: 1.6;
}

/* ===== Section Heading Accent ===== */
.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2,
section > h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-heading h2::after,
section > h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold-mid);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* ===== Navbar ===== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(18,59,90,0.08);
}

.nav.nav-hidden { transform: translateY(-100%); }

.logo img {
    height: 130px;
    width: auto;
    display: block;
}

.nav-links { display: flex; align-items: center; gap: 0.2rem; }

.nav a { text-decoration: none; color: var(--text); }

.menu {
    position: relative;
    padding: 0.4rem 0.7rem;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.menu::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0px;
    height: 2px;
    background: var(--navy);
    width: 0%;
    transition: width 0.3s ease;
}

.menu:hover { color: var(--navy); }
.menu:hover::after { width: calc(100% - 1.4rem); }

.menu.active {
    color: var(--navy);
    font-weight: 600;
}

.menu.active::after { width: calc(100% - 1.4rem); }

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }

/* ===== Buttons ===== */
.btn-primary, .btn-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 3px 12px rgba(18,59,90,0.25);
}

.btn-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(18,59,90,0.3);
}

.btn-secondary {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    min-height: calc(100vh - 90px);
    align-items: stretch;
}

.hero-text {
    flex: 1;
    background: var(--gold);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-text::before {
    content: "§";
    position: absolute;
    font-size: 22rem;
    font-family: 'Playfair Display', serif;
    color: rgba(18,59,90,0.04);
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
}

.hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.8rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-text p {
    max-width: 400px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3a4a58;
    margin-bottom: 0.5rem;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image { flex: 1; }

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Sections general ===== */
section { padding: 5rem 1.5rem; }

section h2 {
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

section > h2 + * { margin-top: 3.5rem; }

/* ===== Team Preview ===== */
.team-preview { background: var(--bg-soft); text-align: center; }

.team-preview-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.team-cards-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.team-card-link { text-decoration: none; color: inherit; display: block; }

.team-member-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(18,59,90,0.12);
    border-color: var(--navy);
}

.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.avatar-tr { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--gold); }
.avatar-ss { background: linear-gradient(135deg, #8b6914, #b8960c); color: #fff; }

.team-member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.team-member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.team-role { font-size: 0.8rem; color: var(--text-light); }
.team-handle { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; }

.team-card-arrow {
    font-size: 1.1rem;
    color: #ccc;
    transition: color 0.2s ease, transform 0.2s ease;
}

.team-member-card:hover .team-card-arrow { color: var(--navy); transform: translateX(4px); }

.team-preview-link { margin-top: 2rem; }

/* ===== Audience Section ===== */
.audience { background: #fff; }

.audience-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: var(--bg-cream);
    padding: 1.8rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--navy);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(18,59,90,0.1);
}

.audience-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.audience-card p { font-size: 0.92rem; color: #444; }

/* ===== Features Section ===== */
.features { background: var(--bg-soft); }

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-top: 3px solid var(--navy);
    transition: transform 0.25s ease;
}

.feature:hover { transform: translateY(-4px); }

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.feature p { font-size: 0.92rem; color: #444; }

/* ===== Trust Section ===== */
.trust {
    background: var(--navy);
    text-align: center;
}

.trust h2 {
    color: var(--gold) !important;
}

.trust h2::after {
    background: var(--gold-mid) !important;
}

.trust p {
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    font-size: 1.02rem;
}

/* ===== CTA Section ===== */
.cta {
    text-align: center;
    background: var(--gold);
}

.cta h2 { color: var(--navy); }

.cta p {
    max-width: 500px;
    margin: 0 auto 0.5rem;
    color: #3a4a58;
}

.cta-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Hero Badge ===== */
.hero-badge {
    display: inline-block;
    background: rgba(18,59,90,0.1);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(18,59,90,0.15);
}

/* ===== Stats Strip ===== */
.stats-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: var(--navy);
    padding: 1.2rem 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
    gap: 0.2rem;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.65);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

@media (max-width: 600px) {
    .stats-strip { gap: 0; }
    .stat-item { padding: 0.5rem 1.2rem; }
    .stat-divider { display: none; }
}

/* ===== Audience icons ===== */
.audience-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* ===== Feature icons ===== */
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* ===== Articles Section (Homepage + Page) ===== */
#articles {
    background: var(--gold);
    padding: 5rem 5%;
    text-align: center;
}

#articles h2 { color: var(--navy); }

.section-sub {
    text-align: center;
    color: #5a4a00;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
}

/* ===== Article Cards Grid ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto 2rem;
    text-align: left;
}

.article-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(18,59,90,0.15);
}

/* Article banner (coloured top, replaces image) */
.article-banner {
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.article-banner-navy  { background: linear-gradient(135deg, #123b5a, #1e5f8e); }
.article-banner-gold  { background: linear-gradient(135deg, #8b6914, #c9a227); }
.article-banner-green { background: linear-gradient(135deg, #1b5e3b, #2e9e67); }

.article-banner-emoji {
    font-size: 2.6rem;
    line-height: 1;
}

.article-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.2);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
}

.article-content {
    flex: 1;
    padding: 1.4rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
}

.article-content .author {
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.7rem;
}

.article-content .excerpt {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid #eee;
}

.read-more {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.82rem;
    transition: letter-spacing 0.2s ease;
}

.article-card:hover .read-more { letter-spacing: 0.3px; }

/* Like button */
.like-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.25rem 0.7rem;
    font-size: 0.82rem;
    cursor: pointer;
    color: #888;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Lora', serif;
}

.like-btn:hover { border-color: #e05555; color: #e05555; }
.like-btn.liked { border-color: #e05555; color: #e05555; background: #fff0f0; }

.see-all-container { text-align: center; margin-top: 1rem; }

.btn-see-all {
    padding: 0.7rem 1.8rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(18,59,90,0.25);
    display: inline-block;
}

.btn-see-all:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(18,59,90,0.3);
}

/* ===== Articles Page ===== */
.articles-page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    color: #fff;
}

.articles-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.articles-page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.articles-page-section {
    max-width: 1100px;
    margin: 3.5rem auto;
    padding: 0 1.5rem;
}

.articles-page-divider {
    max-width: 900px;
    margin: 1rem auto 2rem;
    padding: 0 1.5rem;
    text-align: center;
}

.divider-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.divider-inner span { color: var(--gold-dark); font-style: normal; }

.divider-inner::before,
.divider-inner::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ===== Article Request Form ===== */
.article-request {
    max-width: 800px;
    margin: 3rem auto 4rem;
    padding: 2.5rem;
    background: var(--bg-soft);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.article-request h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.article-request-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--text-light);
}

.article-request-form { display: grid; gap: 1.2rem; }

.article-request-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    font-family: 'Lora', serif;
    color: #333;
    gap: 0.3rem;
}

.article-request-form input,
.article-request-form textarea {
    padding: 0.7rem 0.9rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    font-family: 'Lora', serif;
    transition: border-color 0.2s ease;
}

.article-request-form input:focus,
.article-request-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(18,59,90,0.06);
}

.article-note { font-size: 0.85rem; color: #666; line-height: 1.5; font-style: italic; }

/* ===== Contact Page ===== */
.contact { padding: 4rem 1.5rem; background: var(--bg-soft); }

.contact-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-subtext { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }

.contact-details p { margin-bottom: 1rem; font-size: 0.95rem; }

.contact-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-light); }

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Lora', serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    font-family: 'Lora', serif;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(18,59,90,0.06);
}

.contact-form button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.9rem;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Lora', serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover { background: var(--navy-dark); transform: translateY(-1px); }

.form-footnote { font-size: 0.8rem; margin-top: 1rem; text-align: center; color: #888; }

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

/* ===== Donate Page ===== */
.donate-page {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background: var(--bg-soft);
}

.donate-card {
    max-width: 600px;
    width: 100%;
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.donate-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.beta { font-size: 0.9rem; color: #b8860b; }
.donate-intro, .donate-note { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }

.donate-box { margin: 2rem 0; }

.donate-box img {
    width: 220px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.donate-details p { margin: 0.4rem 0; }
.upi-id span { font-weight: 700; color: var(--navy); font-size: 1.05rem; }

.donate-footer { font-size: 0.9rem; margin-top: 1.5rem; }
.donate-footer a { color: var(--navy); text-decoration: underline; }

/* ===== Thank You Page ===== */
.thanks-page {
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background: var(--bg-soft);
}

.thanks-card {
    background: #fff;
    max-width: 520px;
    width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.thanks-icon { font-size: 3rem; margin-bottom: 1rem; }

.thanks-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.thanks-text { font-size: 1rem; line-height: 1.7; margin-bottom: 0.5rem; }
.thanks-subtext { font-size: 0.95rem; color: var(--text-light); margin-bottom: 2rem; }

.thanks-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Team Full Page ===== */
.team-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    color: #fff;
}

.team-hero-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.team-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.team-hero-sub {
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.85;
}

.team-full {
    max-width: 860px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-full-card {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border: 1px solid var(--border);
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
}

.team-full-card:hover { box-shadow: 0 16px 40px rgba(18,59,90,0.1); }

.team-full-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
}

.avatar-tr-lg {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(18,59,90,0.3);
}

.avatar-ss-lg {
    background: linear-gradient(135deg, #8b6914, #c9a227);
    color: #fff;
    box-shadow: 0 6px 20px rgba(139,105,20,0.3);
}

img.team-avatar,
img.team-full-avatar {
    object-fit: cover;
    object-position: center top;
}

.team-full-body { flex: 1; }

.team-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-full-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
    text-align: left;
}

.team-full-role { display: inline-block; font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }

.team-social-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-btn.youtube { background: #ff0000; color: #fff; }

.team-full-bio { font-size: 0.95rem; line-height: 1.8; color: #444; margin-bottom: 1.2rem; }
.team-full-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag {
    background: var(--gold);
    color: #5a4a00;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.team-join { text-align: center; background: var(--gold); padding: 4rem 1.5rem; }
.team-join h2 { color: var(--navy); margin-bottom: 0.8rem; }
.team-join p { color: var(--text-light); margin-bottom: 1.5rem; }

@media (max-width: 600px) {
    .team-full-card { flex-direction: column; align-items: center; text-align: center; }
    .team-full-header { flex-direction: column; align-items: center; }
    .team-full-header h2 { text-align: center; }
    .team-hero h1 { font-size: 2.5rem; }
    .team-full-tags { justify-content: center; }
}

/* ===== Mission Page ===== */
.mission-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    color: #fff;
}

.mission-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.mission-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.mission-tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.mission-body {
    max-width: 760px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.mission-section { margin-bottom: 3rem; }

.mission-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
    text-align: left;
    border-left: 4px solid var(--gold-mid);
    padding-left: 1rem;
}

.mission-section p { font-size: 1rem; line-height: 1.9; color: #333; margin-bottom: 1rem; }

.mission-divider { text-align: center; font-size: 1.8rem; margin: 2rem 0; opacity: 0.4; }

.mission-closing {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--gold);
    border-radius: 12px;
    text-align: center;
}

.mission-closing blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    border: none;
    padding: 0;
}

.mission-closing p { font-size: 0.9rem; color: #666; font-weight: 600; }

.mission-cta {
    text-align: center;
    background: var(--bg-soft);
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--border);
}

.mission-cta h2 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 0.8rem; }
.mission-cta p { color: var(--text-light); margin-bottom: 1.5rem; }

@media (max-width: 600px) {
    .mission-hero h1 { font-size: 2.5rem; }
    .mission-section h2 { font-size: 1.3rem; }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 600px) {
    .hero { flex-direction: column; }
    .hero-text { padding: 3rem 1.5rem; }
    .hero-text h1 { font-size: 2.6rem; }
    .hero-image { height: 280px; }
    .article-image { width: 120px; }
    .article-content h3 { font-size: 1.1rem; }
    .articles-page-hero h1 { font-size: 2.2rem; }
    .logo img { height: 90px; }
}


/* ===== Avatar brightness ===== */
img.team-avatar, img.team-full-avatar {
    filter: brightness(1.1);
}

/* ===== Article Template Download Button ===== */
.template-download {
    background: #fff;
    border: 1.5px dashed #c9a227;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.template-download p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}