/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #4A7C8C;
    --terracotta: #C77247;
    --cream: #E8E4D9;
    --dark: #1a1a1a;
    --charcoal: #2A2520;
    --light-gray: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-logo-img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-links a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.shop-link {
    color: var(--terracotta) !important;
    font-weight: 600;
}

/* Banner Section */
.ff-shop-banner {
    background-color: #f5f3ef;
    border-bottom: 1px solid #e8e4d9;
    padding: 0.6rem 1.5rem;
    width: 100%;
    margin-top: 105px;
    opacity: 1 !important;
}

.ff-shop-banner .banner-content {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.ff-shop-banner a {
    color: #4a7c8c;
    text-decoration: none;
    font-weight: 500;
}

.ff-shop-banner a:hover {
    color: #c77247;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--terracotta) 100%);
    /* Replace with actual hero image: */
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title .emphasis {
    color: var(--terracotta);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--terracotta);
    color: #fff;
    border: 2px solid var(--terracotta);
}

.btn-hero-primary:hover {
    background: transparent;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--dark);
    transform: translateY(-2px);
}

/* Explore Section */
.explore-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 2rem;
        background-color: #ffffff;
        border-top: 6px solid #a6a7a7;
        border-radius: 8px;
        gap: 1rem;
    }

    .explore-card .product-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .explore-card .product-info h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0;
    }

    .explore-card .product-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 240px;
        margin: 0;
    }

/* Principles Banner */
.principles-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--dark);
}

.principle-block-banner {
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.principle-block-banner:hover {
    transform: translateY(-10px);
}

.principle-block-banner[data-color="blue"] {
    background: var(--blue);
}

.principle-block-banner[data-color="terracotta"] {
    background: var(--terracotta);
}

.principle-block-banner[data-color="cream"] {
    background: var(--cream);
    color: var(--dark);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-block-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.principle-block-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.principle-circle {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 40px;
    background: #fff;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--dark);
}

.philosophy-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.philosophy-highlight {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--terracotta) !important;
    margin-top: 40px !important;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--terracotta);
}

/* Products Section */
.products-section {
    padding: 120px 40px;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    background: var(--cream);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-product {
    background: var(--terracotta);
    color: #fff;
    border: 2px solid var(--terracotta);
}

.btn-product:hover {
    background: transparent;
    color: var(--terracotta);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
}

.collection-cta {
    text-align: center;
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--dark);
    color: #fff;
    border: 2px solid var(--dark);
}

.btn-primary:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--terracotta) 100%);
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-large {
    padding: 25px 60px;
    font-size: 1.3rem;
    background: #fff;
    color: var(--dark);
    border: 2px solid #fff;
}

.btn-cta-large:hover {
    background: transparent;
    color: #fff;
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-logo {
    height: 75px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-nav,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--terracotta);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .principles-banner {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content h2 {
        font-size: 2rem;
    }
    
    .philosophy-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--charcoal) 100%);
    padding: 150px 40px 100px;
    margin-top: 0px;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 1.5rem;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 120px 40px;
    background: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--charcoal);
    text-align: center;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #333;
}

.story-emphasis {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--terracotta) !important;
    margin-top: 40px !important;
    text-align: center;
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--blue), var(--terracotta), var(--cream));
    max-width: 200px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 100px 40px;
}

.content-section.alt-bg {
    background: var(--light-gray);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.content-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 50px 0 20px;
    color: var(--blue);
}

.content-wrapper p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

.baseline {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--terracotta) !important;
    padding: 30px;
    background: rgba(199, 114, 71, 0.1);
    border-left: 4px solid var(--terracotta);
    margin-bottom: 40px !important;
}

.section-closer {
    font-size: 1.3rem !important;
    font-style: italic;
    margin-top: 50px !important;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.principle-card {
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-10px);
}

.principle-card[data-color="blue"] {
    background: var(--blue);
    color: #fff;
}

.principle-card[data-color="terracotta"] {
    background: var(--terracotta);
    color: #fff;
}

.principle-card[data-color="cream"] {
    background: var(--cream);
    color: var(--charcoal);
}

.principle-number {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: inherit !important;
}

.principle-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: inherit !important;
    opacity: 0.95;
    margin: 0 !important;
}

.principle-footer {
    font-size: 1.3rem !important;
    font-style: italic;
    text-align: center;
    margin-top: 30px !important;
}

/* Philosophy Quotes */
.philosophy-quote {
    margin: 50px 0;
    padding: 40px;
    background: rgba(74, 124, 140, 0.08);
    border-left: 5px solid var(--blue);
    border-radius: 4px;
}

.quote-text {
    font-size: 1.5rem !important;
    font-style: italic;
    font-weight: 600;
    color: var(--charcoal) !important;
    margin-bottom: 15px !important;
}

.quote-author {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--blue) !important;
    margin-bottom: 20px !important;
}

.quote-meaning {
    font-size: 1.15rem !important;
    line-height: 1.7;
    color: #555 !important;
    margin: 0 !important;
}

/* For List */
.for-list {
    margin: 40px 0;
    padding-left: 30px;
}

.for-list li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.audience-statement {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: var(--terracotta) !important;
    margin: 40px 0 !important;
    text-align: center;
}

/* What's Next Section */
.whats-next-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--terracotta) 100%);
    text-align: center;
    color: #fff;
}

.whats-next-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.whats-next-content p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.whats-next-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--charcoal);
}

/* ── About page destination button hovers ── */
.whats-next-cta .btn-integrity:hover     { background: #4A6FA5; border-color: #4A6FA5; color: #fff; }
.whats-next-cta .btn-selflessness:hover  { background: #C8B89A; border-color: #C8B89A; color: #1a1a1a; }
.whats-next-cta .btn-persistence:hover   { background: #C4714A; border-color: #C4714A; color: #fff; }
.whats-next-cta .btn-faith:hover         { background: #555; border-color: #555; color: #fff; }

/* Mobile - About Page */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 80px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-content p {
        font-size: 1.2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .content-wrapper p {
        font-size: 1.1rem;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-quote {
        padding: 25px;
    }
    
    .quote-text {
        font-size: 1.3rem !important;
    }
    
    .whats-next-content h2 {
        font-size: 2.5rem;
    }
    
    .whats-next-cta {
        flex-direction: column;
        align-items: center;
    }
}
/* Contact Page Specific Styles */

.contact-section {
    padding: 100px 40px;
    background: #fff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.contact-intro p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 8px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block {
    padding: 30px;
    background: rgba(74, 124, 140, 0.05);
    border-left: 4px solid var(--blue);
    border-radius: 4px;
}

.info-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.info-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.info-block a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--terracotta);
}

.principles-reminder {
    background: rgba(199, 114, 71, 0.05);
    border-left-color: var(--terracotta);
}

.principles-reminder p:first-child {
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 10px;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 100px 40px;
    background: var(--light-gray);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.contact-cta-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Fix button visibility on light background */
.contact-cta-section .btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.contact-cta-section .btn-secondary:hover {
    background: var(--charcoal);
    color: #fff;
}

/* Mobile - Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Stories Page Specific Styles */

.stories-intro-section {
    padding: 100px 40px;
    background: #fff;
    text-align: center;
}

.stories-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.stories-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.stories-intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Stories Grid */
.stories-grid-section {
    padding: 80px 40px 120px;
    background: var(--light-gray);
}

.stories-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.story-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.story-card[data-principle="integrity"] {
    border-left-color: var(--blue);
}

.story-card[data-principle="persistence"] {
    border-left-color: var(--terracotta);
}

.story-card[data-principle="selflessness"] {
    border-left-color: var(--cream);
}

.story-principle-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-card[data-principle="integrity"] .story-principle-badge {
    background: rgba(74, 124, 140, 0.15);
    color: var(--blue);
}

.story-card[data-principle="persistence"] .story-principle-badge {
    background: rgba(199, 114, 71, 0.15);
    color: var(--terracotta);
}

.story-card[data-principle="selflessness"] .story-principle-badge {
    background: rgba(232, 228, 217, 0.6);
    color: var(--charcoal);
}

.story-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--charcoal);
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.story-lesson {
    font-size: 1.2rem !important;
    font-style: italic;
    font-weight: 600;
    color: #666 !important;
    margin-top: 30px !important;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Stories CTA Section */
.stories-cta-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue) 100%);
    text-align: center;
    color: #fff;
}

.stories-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.stories-cta-content p {
    font-size: 1.4rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.cta-emphasis {
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 50px !important;
    color: var(--terracotta) !important;
}

.stories-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-dark {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary-dark:hover {
    background: #fff;
    color: var(--charcoal);
}

/* Mobile - Stories Page */
@media (max-width: 768px) {
    .stories-wrapper {
        grid-template-columns: 1fr;
    }
    
    .story-card {
        padding: 30px;
    }
    
    .story-card h3 {
        font-size: 1.5rem;
    }
    
    .story-content p {
        font-size: 1.05rem;
    }
    
    .stories-intro-content h2 {
        font-size: 2rem;
    }
    
    .stories-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-emphasis {
        font-size: 1.6rem !important;
    }
    
    .stories-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stories-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Thank You Page */

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 100px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--charcoal) 100%);
}

.thank-you-content {
    max-width: 700px;
    text-align: center;
    color: #fff;
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    color: var(--terracotta);
}

.thank-you-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.thank-you-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.thank-you-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.thank-you-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thank-you-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.back-link {
    margin-top: 30px;
}

.back-link a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.back-link a:hover {
    opacity: 1;
}
.form-message {
    max-width: 700px;
    margin: 0 0 25px 0;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

.form-message.error,
.form-message.invalid,
.form-message.failed {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

/* Mobile - Thank You */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 120px 20px 80px;
    }
    
    .thank-you-icon {
        font-size: 3.5rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.2rem;
    }
    
    .thank-you-message {
        padding: 30px 20px;
    }
    
    .thank-you-message p {
        font-size: 1.1rem;
    }
    
    .thank-you-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ── Hamburger Toggle Button ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate to X when open */
.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ── Mobile Nav ── */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        z-index: 999;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* ── Footer Email Capture ── */
.footer-email-capture {
    background: var(--charcoal);
    padding: 50px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.email-capture-content {
    max-width: 500px;
    margin: 0 auto;
}

.email-capture-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.email-capture-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
}

.email-capture-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-capture-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: border-color 0.3s ease;
}

.email-capture-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.4);
}

.email-capture-form input[type="email"]:focus {
    outline: none;
    border-color: var(--terracotta);
}

.btn-capture {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--terracotta);
    color: #fff;
    border: 2px solid var(--terracotta);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-capture:hover {
    background: transparent;
    color: var(--terracotta);
}

/* Email success message */
.email-success-message {
    display: none;
    color: var(--terracotta);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 0;
}

/* ── Mobile email capture ── */
@media (max-width: 768px) {
    .footer-email-capture {
        padding: 40px 20px;
    }

    .email-capture-form {
        flex-direction: column;
        align-items: center;
    }

    .email-capture-form input[type="email"] {
        width: 100%;
        max-width: 100%;
    }

    .btn-capture {
        width: 100%;
    }
}

.about-sig {
    text-align: right;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.75;
}

/* ============================================================
   PILLAR PAGES — Integrity, Selflessness, Persistence, Faith
   Add to bottom of styles.css
   ============================================================ */

/* ── Color tokens per pillar ──────────────────────────────── */
/* Set --pillar-color in each page's <style> block or inline  */
/* Integrity:   #4A6FA5  (blue)                               */
/* Selflessness: #C8B89A (cream)                              */
/* Persistence: #C4714A  (terracotta)                         */
/* Faith:       #a6a7a7  (FF logo gray)                       */

/* ── Page Hero ────────────────────────────────────────────── */
.pillar-hero {
    background: var(--color-dark, #1a1a1a);
    padding: 7rem 2rem 3rem; /* extra top padding clears the floating main nav */
    text-align: center;
    border-bottom: 4px solid var(--pillar-color, #a6a7a7);
}
.pillar-hero .pillar-icon {
    font-size: 3rem;
    color: var(--pillar-color, #a6a7a7);
    display: block;
    margin-bottom: 1rem;
}
.pillar-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.pillar-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Section Navigator ────────────────────────────────────── */
.pillar-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--color-dark, #1a1a1a);
    border-bottom: 2px solid var(--pillar-color, #a6a7a7);
}
.pillar-nav-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}
.pillar-nav-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.pillar-nav-item:hover,
.pillar-nav-item.active {
    color: #fff;
    border-bottom-color: var(--pillar-color, #a6a7a7);
    background: rgba(255, 255, 255, 0.05);
}

/* ── Story Emphasis / Quotes ──────────────────────────────── */
.pillar-section .story-emphasis,
.pillar-section p.story-emphasis {
    color: var(--pillar-color) !important;
    font-style: italic;
}

/* ── Pillar Content Sections ──────────────────────────────── */
.pillar-section {
    padding: 4rem 2rem;
    max-width: 860px;
    margin: 0 auto;
    scroll-margin-top: 160px; /* clears main nav (~70px) + pillar nav (~45px) + buffer */
}
.pillar-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pillar-color, #a6a7a7);
    display: inline-block;
}
.pillar-section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 2rem;
}

/* ── Principles spacing ───────────────────────────────────── */
.pillar-section > p + p {
    margin-top: 1.25rem;
}

/* ── Quote breathing room ─────────────────────────────────── */
.pillar-section .story-emphasis {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* ── Traits Grid ──────────────────────────────────────────── */
.traits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.trait-item {
    background: rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--pillar-color, #a6a7a7);
    padding: 1.25rem 1.25rem;
    border-radius: 0 4px 4px 0;
}
.trait-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--pillar-color, #a6a7a7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.trait-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* ── Historical Figures ───────────────────────────────────── */
.figures-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}
.figure-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.figure-initial {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pillar-color, #a6a7a7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.figure-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}
.figure-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.85;
}

/* ── Q&A Accordion ────────────────────────────────────────── */
.qa-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1.5rem;
}
.qa-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.qa-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.qa-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: inherit;
}
.qa-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--pillar-color, #a6a7a7);
    flex-shrink: 0;
    transition: transform 0.2s;
}
.qa-item.open .qa-question::after {
    transform: rotate(45deg);
}
.qa-answer {
    display: none;
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.85;
}
.qa-item.open .qa-answer {
    display: block;
}

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
    display: block;
    text-align: right;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pillar-color, #a6a7a7);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.back-to-top:hover {
    opacity: 1;
}

/* ── Pillar Footer CTA ────────────────────────────────────── */
.pillar-footer-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: #f5f2ee;
    color: #1a1a1a;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Per-pillar footer background colors */
.pillar-footer-cta.footer-integrity    { background: #eef2f7; border-top-color: rgba(74, 111, 165, 0.15); }
.pillar-footer-cta.footer-selflessness { background: #f5f2ee; border-top-color: rgba(200, 184, 154, 0.25); }
.pillar-footer-cta.footer-persistence  { background: #faf0eb; border-top-color: rgba(196, 113, 74, 0.15); }
.pillar-footer-cta.footer-faith        { background: #f4f4f4; border-top-color: rgba(166, 167, 167, 0.2); }
.pillar-footer-cta h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.pillar-footer-cta p {
    margin-bottom: 2rem;
    opacity: 0.65;
    color: #1a1a1a;
}
.pillar-cta-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer CTA button overrides (light background context) ── */
.pillar-footer-cta .btn-secondary {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}
.pillar-footer-cta .btn-secondary:hover {
    color: #fff;
}

/* Per-destination hover colors — applies to pillar footer CTAs and about page */
.pillar-footer-cta .btn-integrity:hover,
.whats-next-cta .btn-integrity:hover     { background: #4A6FA5; border-color: #4A6FA5; color: #fff; }
.pillar-footer-cta .btn-selflessness:hover,
.whats-next-cta .btn-selflessness:hover  { background: #C8B89A; border-color: #C8B89A; color: #1a1a1a; }
.pillar-footer-cta .btn-persistence:hover,
.whats-next-cta .btn-persistence:hover   { background: #C4714A; border-color: #C4714A; color: #fff; }
.pillar-footer-cta .btn-faith:hover,
.whats-next-cta .btn-faith:hover         { background: #555; border-color: #555; color: #fff; }

.pillar-footer-cta .btn-primary {
    background: #1a1a1a;
    border: 2px solid #1a1a1a;
    color: #fff;
}
.pillar-footer-cta .btn-primary:hover {
    background: #555;
    border-color: #555;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
    .pillar-nav-item {
        font-size: 0.72rem;
        padding: 0.75rem 0.4rem;
        letter-spacing: 0.04em;
    }
    .figure-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    .traits-grid {
        grid-template-columns: 1fr;
    }
}

        /* Article header */
        .article-header {
            background: #1a1a1a;
            padding: 9rem 2rem 3rem;
            border-bottom: 4px solid <?php echo $pillarColor; ?>;
            text-align: center;
        }
        .article-pillar-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: <?php echo $pillarColor; ?>;
            margin-bottom: 1rem;
            text-decoration: none;
        }
        .article-pillar-tag:hover { opacity: 0.8; }
        .article-header h1 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: #fff;
            max-width: 760px;
            margin: 0 auto 1rem;
            line-height: 1.25;
        }
        .article-meta {
            color: rgba(255,255,255,0.45);
            font-size: 0.85rem;
        }

        /* Featured image */
        .article-image {
            max-width: 860px;
            margin: 3rem auto 0;
            padding: 0 2rem;
        }
        .article-image img {
            width: 100%;
            border-radius: 8px;
            display: block;
        }

        /* Article body */
        .article-body {
            max-width: 700px;
            margin: 3rem auto 4rem;
            padding: 0 2rem;
            font-size: 1.1rem;
            line-height: 1.85;
            color: #333;
        }
        .article-body p { margin-bottom: 1.5rem; }

        /* Author byline */
        .article-byline {
            max-width: 700px;
            margin: 0 auto 3rem;
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(0,0,0,0.08);
            font-size: 0.9rem;
            color: #888;
        }
        .article-byline strong { color: #444; }

        /* Footer CTA */
        .article-footer-cta {
            text-align: center;
            padding: 4rem 2rem;
            background: #f4f4f4;
            border-top: 1px solid rgba(0,0,0,0.08);
            color: #1a1a1a;
        }
        .article-footer-cta h2 { margin-bottom: 1rem; }
        .article-footer-cta p  { margin-bottom: 2rem; opacity: 0.65; }
        .article-footer-links  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .article-footer-cta .btn-secondary { background: transparent; border: 2px solid #1a1a1a; color: #1a1a1a; }