/* === VARIABLES === */
:root {
    --gold: #C9A962;
    --gold-light: #E5D4A1;
    --gold-dark: #8B7355;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-lighter: #1E1E1E;
    --white: #FAFAFA;
    --white-muted: #B0B0B0;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-body); 
    background-color: var(--black); 
    color: var(--white); 
    line-height: 1.6; 
    overflow-x: hidden;
    font-size: 17px;
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    z-index: 1001;
}

.logo-box {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links li { position: relative; }

.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-light);
    border: 1px solid var(--gold-dark);
    padding: 0.5rem 0;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
}

.nav-cta {
    display: none;
    padding: 0.6rem 1.125rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* === MOBILE MENU BUTTON === */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    padding: 65px 1.25rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--black-lighter); }

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold); }

.menu-cta {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

/* === PAGE HEADER === */
.page-header {
    padding: 70px 1.25rem 1.5rem;
    background: var(--black);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header-content { max-width: 700px; position: relative; z-index: 1; }

.page-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.page-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.page-label span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.page-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.625rem;
}

.page-title em { font-style: italic; color: var(--gold); }

.page-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.6;
}

/* === HERO SECTION === */
.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 1.25rem 2rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content { max-width: 700px; z-index: 1; }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.hero-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.hero-label span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-muted);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

/* === BUTTONS === */
.btn-primary, .btn-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--white-muted);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* === STATS BAR === */
.stats-bar {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 0.2rem;
}

/* === SECTIONS === */
section { padding: 2rem 1.25rem; }

.section-header { margin-bottom: 1.25rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-label span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--gold); }

/* === ABOUT SECTION === */
.about { background: var(--black-light); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border: 1px solid var(--gold-dark);
}

.about-content p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-muted);
    margin-bottom: 0.875rem;
    line-height: 1.7;
}

.about-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.role-tag {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* === SERVICES === */
.services { background: var(--black); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.service-card {
    padding: 1.25rem;
    background: var(--black-light);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.3s ease;
}

.service-card:hover { border-color: var(--gold-dark); }

.service-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.375rem;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.6;
}

/* === PLATFORMS === */
.platforms { background: var(--black-light); }

.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.platform-card {
    padding: 1.25rem;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    transition: border-color 0.3s ease;
}

.platform-card:hover { border-color: var(--gold-dark); }

.platform-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
}

.platform-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.375rem;
}

.platform-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.6;
}

/* === CONTACT === */
.contact-section { background: var(--black); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-info p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: var(--gold); }

.contact-form {
    padding: 1.25rem;
    background: var(--black-light);
    border: 1px solid var(--gold-dark);
}

.form-group { margin-bottom: 0.875rem; }

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: transparent;
    color: var(--gold);
}

/* === FOOTER === */
footer {
    padding: 1.25rem;
    background: var(--black);
    border-top: 1px solid var(--black-lighter);
    text-align: center;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--white-muted);
    margin-bottom: 0.625rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.7rem;
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* === CONTENT SECTIONS === */
.content-section { background: var(--black-light); }
.content-section:nth-child(even) { background: var(--black); }

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.content-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-muted);
    margin-bottom: 0.875rem;
    line-height: 1.7;
}

.content-card {
    padding: 1.25rem;
    background: var(--black);
    border: 1px solid var(--gold-dark);
}

.content-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.625rem;
    color: var(--gold-light);
}

.content-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.content-card ul { list-style: none; margin-top: 0.625rem; }

.content-card li {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--white-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.content-card li::before {
    content: '→';
    color: var(--gold);
    font-size: 0.75rem;
}

.book-cover img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border: 1px solid var(--gold-dark);
}

/* === CTA SECTION === */
.cta-section {
    background: var(--black-light);
    text-align: center;
    padding: 2rem 1.25rem;
}

.cta-content { max-width: 550px; margin: 0 auto; }

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.625rem;
}

.cta-content h2 em { font-style: italic; color: var(--gold); }

.cta-content p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* === CHURCH INFO CARD === */
.church-info-card {
    padding: 1.5rem;
    background: var(--black);
    border: 1px solid var(--gold-dark);
}

.church-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gold);
}

.church-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--black-lighter);
}

.church-detail:last-child { border-bottom: none; }

.church-detail-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.church-detail-text { flex: 1; }

.church-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 0.15rem;
}

.church-detail-value {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.4;
}

.church-detail-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.church-detail-value a:hover { color: var(--gold); }

/* ============================================ */
/* === TABLET BREAKPOINT (768px and up) === */
/* ============================================ */
@media (min-width: 768px) {
    nav { padding: 0.875rem 2rem; }
    
    .hero { padding: 85px 2rem 2.5rem; }
    .hero h1 { font-size: 2.75rem; }
    .hero-ctas { flex-direction: row; }
    
    .page-header { padding: 85px 2rem 2rem; }
    .page-title { font-size: 2.5rem; }
    
    section { padding: 2.5rem 2rem; }
    .section-title { font-size: 2rem; }
    
    .about-grid { grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: start; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .content-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    
    footer { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        text-align: left;
        padding: 1.25rem 2rem;
    }
    .footer-text { margin-bottom: 0; }
}

/* ============================================ */
/* === DESKTOP BREAKPOINT (992px and up) === */
/* ============================================ */
@media (min-width: 992px) {
    .mobile-menu-btn { display: none !important; }
    .nav-links { display: flex !important; }
    .nav-cta { display: inline-block !important; }
    
    nav { padding: 0.875rem 3rem; }
    
    .hero { padding: 100px 3rem 3rem; }
    .hero h1 { font-size: 3.25rem; }
    
    .page-header { padding: 100px 3rem 2.5rem; }
    .page-title { font-size: 3rem; }
    
    section { padding: 3rem 3rem; }
    .section-title { font-size: 2.25rem; }
    
    .about-grid { gap: 3rem; }
    .platforms-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { gap: 3rem; }
    .content-grid { gap: 3rem; }
    
    .stat-number { font-size: 2.25rem; }
}

/* ============================================ */
/* === LARGE DESKTOP (1200px and up) === */
/* ============================================ */
@media (min-width: 1200px) {
    nav { padding: 1rem 4rem; }
    .nav-links { gap: 2rem; }
    .nav-links a { font-size: 0.8rem; }
    
    .hero { padding: 110px 4rem 3.5rem; }
    .hero h1 { font-size: 3.75rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .page-header { padding: 110px 4rem 3rem; }
    .page-title { font-size: 3.5rem; }
    .page-subtitle { font-size: 1.1rem; }
    
    section { padding: 3.5rem 4rem; }
    .section-title { font-size: 2.5rem; }
    
    .about-grid { gap: 4rem; }
    .stat-number { font-size: 2.75rem; }
    
    .about-content p,
    .content-text p,
    .contact-info p { font-size: 1.05rem; }
}
