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

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --navy: #0A0E1A;
    --navy-mid: #111827;
    --navy-light: #1E2A40;
    --purple: #2D1B5E;
    --crimson: #8B1A2F;
    --ivory: #F5F0E8;
    --ivory-mid: #E8E0CC;
    --text-light: #F0EAD6;
    --text-muted: #A89870;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', sans-serif;
    background: var(--navy);
    color: var(--text-light);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.nav-logo span { color: var(--text-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* HERO */
#hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, #1a0e3a 0%, #0A0E1A 50%, #0d0a05 100%);
}
.hero-stars {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(201,168,76,0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(201,168,76,0.4) 1px, transparent 1px);
    background-size: 80px 80px, 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.15;
    animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.1; } to { opacity: 0.25; } }
.hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 2rem; }
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.5rem 1.5rem; border-radius: 2px;
    margin-bottom: 2rem;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700; line-height: 1;
    color: var(--ivory);
    margin-bottom: 1rem;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic; font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2rem; line-height: 1.5;
}
.hero-scripture {
    font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 3rem;
}
.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 1rem 2.5rem; text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
}
.hero-cta:hover { opacity: 0.85; transform: translateY(-2px); }

/* SECTIONS */
section { padding: 7rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600; line-height: 1.1;
    color: var(--ivory); margin-bottom: 1.5rem;
}
.divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0;
}

/* ABOUT */
#about { background: var(--navy-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p {
    font-size: 1.05rem; line-height: 1.85; color: #B8AA8E;
    margin-bottom: 1.2rem;
}
.scripture-block {
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    background: rgba(201,168,76,0.05);
    margin: 2rem 0;
}
.scripture-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-style: italic;
    color: var(--gold-light); line-height: 1.6;
}
.scripture-block cite { font-size: 0.8rem; color: var(--gold-dark); letter-spacing: 0.1em; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-box {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2rem 1.5rem; text-align: center;
}
.stat-box .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; color: var(--gold);
}
.stat-box p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }

/* LEGENDS */
#legends { background: var(--navy); }
.legends-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; margin-top: 4rem;
}
.legend-card {
    background: linear-gradient(145deg, rgba(30,42,64,0.8), rgba(10,14,26,0.9));
    border: 1px solid rgba(201,168,76,0.15);
    padding: 2.5rem 2rem;
    position: relative; overflow: hidden;
    transition: border-color 0.4s, transform 0.4s;
}
.legend-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.legend-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-6px); }
.legend-card:hover::before { opacity: 1; }
.legend-crown { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.legend-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: var(--ivory); margin-bottom: 0.3rem;
}
.legend-role { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.legend-scripture { font-size: 0.78rem; color: var(--gold-dark); margin-bottom: 1.2rem; font-style: italic; }
.legend-story { font-size: 0.95rem; line-height: 1.75; color: #9A8C70; }
.sphere-badge {
    display: inline-block; margin-top: 1.5rem;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-dark); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.3rem 0.8rem;
}

/* SPHERES */
#spheres { background: var(--navy-mid); }
.spheres-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem; margin-top: 4rem;
}
.sphere-card {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 2rem 1.5rem; text-align: center;
    transition: background 0.3s;
}
.sphere-card:hover { background: rgba(201,168,76,0.1); }
.sphere-icon { font-size: 2rem; margin-bottom: 1rem; }
.sphere-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--ivory); margin-bottom: 0.5rem;
}
.sphere-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* TESTIMONIES */
#testimonies { background: var(--navy); }
.testimony-form {
    max-width: 600px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 3rem; margin: 3rem auto 0;
}
.testimony-form input,
.testimony-form textarea {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-light); font-family: 'Jost', sans-serif;
    font-size: 0.95rem; padding: 1rem;
    margin-bottom: 1.2rem; outline: none;
    transition: border-color 0.3s;
}
.testimony-form input:focus, .testimony-form textarea:focus { border-color: var(--gold); }
.testimony-form textarea { min-height: 120px; resize: vertical; }
.submit-btn {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy); border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 1rem 2.5rem; width: 100%;
    transition: opacity 0.3s;
}
.submit-btn:hover { opacity: 0.85; }
#testimony-success {
    display: none; text-align: center;
    color: var(--gold); padding: 1rem; margin-top: 1rem;
    border: 1px solid rgba(201,168,76,0.3);
}

/* FOOTER */
footer {
    background: #05080F;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 2rem; text-align: center;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem;
}
footer p { font-size: 0.85rem; color: var(--text-muted); }

/* ADMIN OVERLAY */
#admin-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(5,8,15,0.97);
    overflow-y: auto;
}
.admin-wrapper { max-width: 960px; margin: 0 auto; padding: 3rem 2rem; }
.admin-header {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding-bottom: 1.5rem; margin-bottom: 2rem;
}
.admin-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--gold);
}
#admin-status { font-size: 0.8rem; color: var(--text-muted); }
.admin-close {
    background: none; border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); cursor: pointer; padding: 0.5rem 1rem;
    font-family: 'Jost', sans-serif; font-size: 0.85rem;
    transition: background 0.3s;
}
.admin-close:hover { background: rgba(201,168,76,0.1); }
#admin-signout-btn {
    display: none; background: none;
    border: 1px solid rgba(139,26,47,0.5);
    color: #e07080; cursor: pointer; padding: 0.4rem 1rem;
    font-size: 0.8rem; margin-right: 1rem;
}
#admin-login-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-light); padding: 0.8rem 1rem;
    font-family: 'Jost', sans-serif; font-size: 0.95rem;
    width: 100%; margin-bottom: 1rem; outline: none;
}
#admin-login-form input:focus { border-color: var(--gold); }
#login-error { color: #e07080; font-size: 0.85rem; margin-bottom: 1rem; }
.login-btn {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy); border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-weight: 600;
    padding: 0.8rem 2rem; font-size: 0.9rem;
}
#admin-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; }
.admin-tab {
    background: none; border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-muted); cursor: pointer; padding: 0.6rem 1.5rem;
    font-family: 'Jost', sans-serif; font-size: 0.85rem;
    transition: all 0.3s;
}
.admin-tab.active {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold); color: var(--gold);
}
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-form-group { margin-bottom: 1.2rem; }
.admin-form-group label {
    display: block; font-size: 0.8rem; color: var(--text-muted);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-light); font-family: 'Jost', sans-serif;
    font-size: 0.95rem; padding: 0.8rem 1rem; outline: none;
    transition: border-color 0.3s;
}
.admin-form-group select option { background: #111827; }
.admin-form-group input:focus,
.admin-form-group textarea:focus,
.admin-form-group select:focus { border-color: var(--gold); }
.admin-form-group textarea { min-height: 100px; resize: vertical; }
.save-btn {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy); border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-weight: 600;
    padding: 0.8rem 2rem; font-size: 0.9rem; margin-right: 1rem;
    transition: opacity 0.3s;
}
.save-btn:hover { opacity: 0.85; }
.clear-btn {
    background: none; border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-muted); cursor: pointer;
    font-family: 'Jost', sans-serif; padding: 0.8rem 1.5rem; font-size: 0.9rem;
}
.admin-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 1.2rem; margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.1);
}
.admin-item-info strong { display: block; color: var(--ivory); font-size: 0.95rem; }
.admin-item-info span { font-size: 0.8rem; color: var(--text-muted); }
.admin-item-actions { display: flex; gap: 0.5rem; }
.btn-edit, .btn-del {
    border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
}
.btn-edit { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.btn-del { background: rgba(139,26,47,0.15); color: #e07080; border: 1px solid rgba(139,26,47,0.3); }
.admin-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--ivory); margin: 2rem 0 1rem;
    padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.15);
}

/* TOAST */
#admin-toast {
    display: none;
    position: fixed; bottom: 2rem; right: 2rem;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold); padding: 1rem 1.5rem;
    font-size: 0.9rem; z-index: 10000;
}

/* AUTHOR */
#author {
    background: linear-gradient(180deg, var(--navy) 0%, rgba(13,10,5,0.95) 100%);
    border-top: 1px solid rgba(201,168,76,0.12);
}
.author-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}
.author-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.author-image-frame {
    position: relative;
    width: 320px;
    height: 420px;
    border: 1px solid rgba(201,168,76,0.3);
    overflow: hidden;
}
.author-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(10,14,26,0.7) 100%
    );
    z-index: 1;
}
.author-image-frame::after {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: -10px; bottom: -10px;
    border: 1px solid rgba(201,168,76,0.15);
    z-index: 0;
    pointer-events: none;
}
.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 0;
    filter: contrast(1.04) saturate(0.95);
    transition: transform 0.6s ease;
}
.author-image-frame:hover .author-photo {
    transform: scale(1.04);
}
.author-crown-badge {
    display: inline-block;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.5rem 1.4rem;
}
.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.author-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.2rem 0 1.8rem;
}
.author-bio {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #B0A288;
    margin-bottom: 1.2rem;
}
.author-bio em {
    color: var(--gold-light);
    font-style: italic;
}
.author-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
}
.author-role-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    transition: border-color 0.3s, background 0.3s;
}
.author-role-item:hover {
    background: rgba(201,168,76,0.09);
    border-color: rgba(201,168,76,0.3);
}
.role-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.author-role-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--ivory);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.author-role-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* CONNECT / SOCIAL */
#connect {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
}
.connect-tagline {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-size: 1.05rem;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(201,168,76,0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    background: rgba(201,168,76,0.03);
}
.social-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.35s;
}
.social-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.07);
}
.social-card:hover::before { opacity: 1; }

/* YouTube accent */
.social-youtube::before { background: linear-gradient(90deg, transparent, #FF0000, transparent); }
.social-youtube .social-icon-wrap { color: #FF4444; }
.social-youtube:hover { border-color: rgba(255,68,68,0.4); }

/* Instagram accent */
.social-instagram::before { background: linear-gradient(90deg, transparent, #E1306C, transparent); }
.social-instagram .social-icon-wrap { color: #E1306C; }
.social-instagram:hover { border-color: rgba(225,48,108,0.4); }

/* Facebook accent */
.social-facebook::before { background: linear-gradient(90deg, transparent, #1877F2, transparent); }
.social-facebook .social-icon-wrap { color: #4A90D9; }
.social-facebook:hover { border-color: rgba(74,144,217,0.4); }

.social-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}
.social-card:hover .social-icon-wrap {
    background: rgba(255,255,255,0.1);
    transform: scale(1.08);
}
.social-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}
.social-platform {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.social-handle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ivory);
    word-break: break-all;
}
.social-cta-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 0.4rem;
}

/* Footer social icons */
.footer-socials {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    align-items: center;
    margin: 1.2rem 0 0.5rem;
}
.footer-socials a {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}
.footer-socials a:hover { color: var(--gold); transform: translateY(-2px); }

/* Email contact strip */
.email-contact-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 560px;
    margin: 2.5rem auto 0;
    padding: 1.6rem 2rem;
    border: 1px solid rgba(201,168,76,0.2);
    background: rgba(201,168,76,0.04);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.email-contact-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.email-contact-strip:hover {
    background: rgba(201,168,76,0.09);
    border-color: rgba(201,168,76,0.45);
    transform: translateY(-3px);
}
.email-contact-strip:hover::before { opacity: 1; }
.email-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: background 0.3s;
}
.email-contact-strip:hover .email-icon-wrap { background: rgba(201,168,76,0.2); }
.email-contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    flex: 1;
}
.email-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.email-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ivory);
    letter-spacing: 0.02em;
}
.email-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.email-contact-strip:hover .email-arrow { transform: translate(3px, -3px); }

/* BURGER BUTTON */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    cursor: pointer;
    padding: 10px;
    z-index: 200;
    transition: border-color 0.3s;
    flex-shrink: 0;
}
.burger:hover { border-color: rgba(201,168,76,0.7); }
.burger span {
    display: block;
    width: 20px; height: 1.5px;
    background: var(--gold);
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
}
/* Animate to X */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dim overlay */
.nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5,8,15,0.7);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-overlay.open { display: block; opacity: 1; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .admin-item { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .author-layout { grid-template-columns: 1fr; gap: 3rem; }
    .author-image-wrap { align-items: flex-start; }
    .author-image-frame { width: 100%; height: 360px; }
    .author-roles { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; max-width: 400px; }

    .burger { display: flex; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0;
        width: min(80vw, 300px);
        height: 100vh;
        background: rgba(10,14,26,0.98);
        backdrop-filter: blur(16px);
        border-left: 1px solid rgba(201,168,76,0.2);
        padding: 7rem 2.5rem 3rem;
        gap: 0;
        z-index: 99;
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
        list-style: none;
    }
    .nav-links.open { transform: translateX(0); }

    .nav-links li {
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .nav-links li:first-child {
        border-top: 1px solid rgba(201,168,76,0.08);
    }
    .nav-links a {
        display: block;
        padding: 1.1rem 0;
        font-size: 1rem;
        letter-spacing: 0.15em;
        color: var(--text-muted);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.25s, padding-left 0.25s;
    }
    .nav-links a:hover {
        color: var(--gold);
        padding-left: 0.5rem;
    }
    .email-contact-strip { flex-direction: column; text-align: center; }
    .email-contact-text { align-items: center; }
}
