/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, rgba(114, 169, 143, 0.05), rgba(232, 244, 240, 0.05));
}

.page-title {
    font-family: var(--font-display);
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--muted);
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.bg-card {
    background: var(--card-bg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-title-medium {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.story-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Prose Content */
.prose-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prose-content p {
    margin: 0;
}

.prose-content strong {
    color: var(--foreground);
    font-weight: 600;
}

.quote-text {
    font-weight: 500;
    color: var(--foreground);
    font-style: italic;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--foreground);
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.insight-card {
    background: var(--background);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.insight-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(114, 169, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.insight-description {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Book Section */
.book-section {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.book-image {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
}

.book-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-description {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.75;
}

/* Philosophy Section */
.philosophy-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-quote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--foreground);
}

.philosophy-content p {
    margin: 0;
}

.philosophy-content strong {
    color: var(--foreground);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-large {
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
}

.btn-animate {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


/* Utility Classes */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mb-medium { margin-bottom: 2rem; }
.mb-large { margin-bottom: 3rem; }
.mb-xl { margin-bottom: 5rem; }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-medium {
        font-size: 1.75rem;
    }
    
    .story-grid,
    .book-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .book-section {
        padding: 2rem;
    }
}
