/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Calm & Nourishing Palette */
    --primary-color: #7FA8A1;      /* Soft Sage Green - calm, health, longevity */
    --primary-dark: #5F7F73;       /* Deep Sage Green */
    --secondary-color: #C97A63;    /* Warm Clay / Terracotta - culture, nourishment, warmth */
    --accent-color: #B85D47;       /* Darker Terracotta */
    --cta-bg: #C97A63;             /* Terracotta for CTA buttons */
    --cta-bg-alt: #D4A574;         /* Mustard alternative */
    
    /* Neutrals */
    --text-dark: #2F2F2F;          /* Charcoal */
    --text-light: #5A5A5A;         /* Medium Gray */
    --bg-light: #FAF7F3;           /* Creamy Off-White */
    --bg-warm: #FFFFFF;            /* Pure White */
    --border-color: #E8E3DD;       /* Subtle Border */
    
    /* Layout */
    --max-width: 1200px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-warm);
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings - Playfair Display */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h1 {
    font-weight: 700;
}

.nav-menu, button, label, .credentials {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-warm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Compact Hero Section */
.hero-compact {
    background: var(--bg-light);
    padding: 3rem 0 2rem;
}

.hero-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-intro h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.tagline {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: left;
}

.hero-philosophy {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 500;
}

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

/* Quick CTA Bar */
.quick-cta {
    background: var(--bg-warm);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.quick-cta-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.quick-cta-item .cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.quick-cta-item .cta-link:hover {
    color: var(--primary-dark);
}

.coming-soon {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Meet Section */
.meet-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.meet-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.meet-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: block;
}

/* About Page */
.about-hero {
    padding: 3rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    text-align: center;
}

.about-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.about-text .intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-top: 1rem;
}

.story,
.approach-section,
.specialties,
.credentials-section {
    padding: 3rem 0;
}

.story {
    background: var(--bg-warm);
}

.approach-section {
    background: var(--bg-light);
}

.specialties {
    background: var(--bg-warm);
}

.credentials-section {
    background: var(--bg-light);
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-card {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.2s;
}

.philosophy-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.specialty-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-item {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.specialty-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.credentials-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.credentials-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: var(--bg-warm);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.6;
}

.credentials-list strong {
    color: var(--primary-color);
}

.meet-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.credentials {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.meet-text .subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 400;
}

.expertise-points {
    margin-top: 2rem;
}

.expertise-item {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.expertise-item strong {
    color: var(--primary-color);
}

/* Consultation Programs */
.consultation-programs {
    padding: 4rem 0;
    background: var(--bg-warm);
}

.programs-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.program-card {
    background: var(--bg-warm);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(127, 168, 161, 0.15);
    transform: translateY(-4px);
}

.program-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: var(--bg-light);
}

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

.program-header h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin: 0;
    flex: 1;
}

.program-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.program-badge.best-value {
    background: var(--secondary-color);
}

.program-content {
    flex: 1;
    margin-bottom: 2rem;
}

.program-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.program-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.program-features li:last-child {
    border-bottom: none;
}

.program-ideal {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    line-height: 1.6;
}

.program-ideal strong {
    color: var(--primary-color);
    font-weight: 600;
}

.program-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.program-button {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
}

/* Compact Services (keeping for backward compatibility) */
.services-compact {
    padding: 3rem 0;
    background: var(--bg-warm);
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-compact {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.2s;
}

.service-card-compact:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-compact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.service-card-compact p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Value Proposition */
.value-prop {
    padding: 3rem 0;
    background: var(--bg-light);
}

.value-tagline {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
}

.value-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Final CTA */
.final-cta {
    padding: 3rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta p {
    font-family: 'Inter', sans-serif;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-primary {
    background: var(--cta-bg);
    color: white;
}

.final-cta .cta-primary:hover {
    background: var(--accent-color);
}


.hero-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    margin: 0 auto;
    display: block;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
}

.cta-primary {
    background: var(--cta-bg);
    color: white;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 122, 99, 0.3);
}

.cta-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Styles - Compact */
.welcome,
.approach,
.services-preview,
.featured-testimonial,
.cta-section {
    padding: 3rem 0;
}

.welcome {
    background: white;
}

.approach {
    background: var(--bg-light);
}

.services-preview {
    background: white;
}

.featured-testimonial {
    background: var(--bg-warm);
}

.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

/* Section Headings */
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.services-compact h2,
.value-prop h2,
.consultation-programs h2 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.welcome-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

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

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

.approach-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.2s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(127, 168, 161, 0.1);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Testimonial */
.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.featured-testimonial {
    text-align: center;
}

/* CTA Section */
.cta-section h2 {
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Booking Page */
.booking-page {
    padding: 3rem 0;
}

.consultation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.option-card {
    background: white;
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.option-card.recommended {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.option-card h3 {
    margin-bottom: 1rem;
}

.option-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.option-card .duration {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.option-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.option-card ul li {
    padding: 0.5rem 0;
}

.form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

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

.security-notice {
    background: #f0fdf4;
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.security-notice strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.security-notice p {
    margin: 0;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-intro h1 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-buttons-top {
        flex-direction: column;
    }

    .cta-buttons-top .cta-primary,
    .cta-buttons-top .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .quick-cta-grid {
        grid-template-columns: 1fr;
    }

    .meet-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .meet-photo,
    .about-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .meet-text h2,
    .about-text h1 {
        text-align: center;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Preview Section (Homepage) */
.blog-preview-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.blog-preview-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-preview-card {
    background: var(--bg-warm);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.blog-preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-preview-content {
    padding: 2rem;
}

.blog-preview-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-preview-meta .blog-date {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-preview-meta .blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-preview-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-preview-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-title a:hover {
    color: var(--primary-color);
}

.blog-preview-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-preview-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-preview-link:hover {
    color: var(--accent-color);
}

.blog-preview-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Blog Listing Page */
.blog-listing-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.blog-listing-page h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

#blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-warm);
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-content {
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.blog-meta .blog-date {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-meta .blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.blog-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: var(--accent-color);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Blog Post Detail Page */
.blog-post-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-warm);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 0;
}

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

.blog-post-header {
    padding: 3rem 3rem 2rem 3rem;
    margin-bottom: 0;
}

.blog-post-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.blog-post-meta .blog-date {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-post-meta .blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
}

.blog-post-body {
    padding: 0 3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-post-body h1 {
    font-size: 2rem;
}

.blog-post-body h2 {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.blog-post-body h3 {
    font-size: 1.5rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-body li {
    margin-bottom: 0.5rem;
}

.blog-post-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-post-body a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-body a:hover {
    color: var(--accent-color);
}

.blog-post-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-post-footer {
    margin-top: 3rem;
    padding: 2rem 3rem 3rem 3rem;
    border-top: 2px solid var(--border-color);
}

.back-to-blog {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.back-to-blog:hover {
    color: var(--accent-color);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-content,
    .blog-post-header,
    .blog-post-body,
    .blog-post-footer {
        padding: 1.5rem;
    }

    .blog-post-image {
        height: 250px;
    }

    .blog-preview-image {
        height: 180px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-title,
    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }
    }

    .philosophy-grid,
    .specialty-list {
        grid-template-columns: 1fr;
    }

    .quote {
        font-size: 1rem;
    }

    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .program-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-badge {
        margin-top: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.75rem;
        font-family: 'Playfair Display', serif;
    }
    
    h1 {
        font-family: 'Playfair Display', serif;
    }

    .value-content p {
        font-size: 1rem;
    }
}
