* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #9caf88;
    --deep-sage: #7a8f6b;
    --soft-cream: #faf8f5;
    --warm-white: #fefdfb;
    --dusty-rose: #e8d5d5;
    --soft-lavender: #e6e2f0;
    --charcoal: #3a3a3a;
    --warm-gray: #6b6b6b;
    --light-gray: #f5f3f0;
    --accent-gold: #d4af89;
    --shadow: rgba(122, 143, 107, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--soft-cream) 50%, #f9f6f2 100%);
    min-height: 100vh;
    color: var(--charcoal);
    line-height: 1.7;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    
    /* Page transition support */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Page transition states */
body.page-transitioning {
    opacity: 0;
}

body.page-loading {
    opacity: 0;
}

/* Desktop layout */
@media (min-width: 769px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
}

.card {
    background: linear-gradient(145deg, var(--warm-white) 0%, var(--soft-cream) 100%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border-radius: 0;
    overflow-x: hidden;
    
    /* Smooth content transitions */
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Card transition states */
.page-transitioning .card {
    transform: translateY(10px);
    opacity: 0.8;
}

/* Desktop card styling */
@media (min-width: 769px) {
    .card {
        border-radius: 20px;
        box-shadow: 
            0 20px 40px -12px var(--shadow),
            0 8px 16px -6px rgba(122, 143, 107, 0.1),
            0 0 0 1px rgba(156, 175, 136, 0.08);
        max-width: 1000px;
        min-height: 700px;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }
}

/* Header Styles */
header {
    background: linear-gradient(145deg, var(--warm-white) 0%, #fefcf9 100%);
    padding: 20px 16px 16px;
    border-bottom: 1px solid rgba(156, 175, 136, 0.12);
}

@media (min-width: 769px) {
    header {
        padding: 40px 40px 30px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: column;
    text-align: center;
}

@media (min-width: 481px) {
    .logo-container {
        flex-direction: row;
        gap: 16px;
    }
    
    .title-group {
        text-align: left;
    }
}

.logo-symbol {
    font-size: 2rem;
    line-height: 1;
}

@media (min-width: 481px) {
    .logo-symbol {
        font-size: 2.5rem;
    }
}

.title {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-sage);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    line-height: 1.1;
}

@media (min-width: 481px) {
    .title {
        font-size: 2.2rem;
    }
}

@media (min-width: 769px) {
    .title {
        font-size: 2.8rem;
    }
}

.subtitle {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 400;
    font-style: italic;
}

@media (min-width: 481px) {
    .subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .subtitle {
        font-size: 1.1rem;
    }
}

/* Navigation - CRITICAL MOBILE FIX */
.navbar {
    background: linear-gradient(180deg, #f8f6f3 0%, var(--light-gray) 100%);
    border-bottom: 1px solid rgba(156, 175, 136, 0.12);
    position: relative;
    z-index: 1000;
}

.nav-container {
    position: relative;
    padding: 0 16px;
}

@media (min-width: 769px) {
    .nav-container {
        padding: 0 30px;
    }
}

/* Mobile Toggle Button - FIXED */
.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 0;
    gap: 4px;
    width: 30px;
    position: relative;
    z-index: 1001;
    
    /* CRITICAL: Remove all hover states and unnecessary properties */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--sage-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - FIXED */
.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-gray);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px var(--shadow);
    z-index: 999;
    border-bottom: 1px solid rgba(156, 175, 136, 0.12);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .nav-menu {
        position: static;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-bottom: none;
        background: transparent;
        flex-direction: row;
        transition: none;
    }
}

/* Navigation Links - COMPLETELY FIXED */
.nav-link {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--warm-gray);
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    background: none;
    width: 100%;
    text-align: center;
    position: relative;
    
    /* CRITICAL: Touch optimization */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    cursor: pointer;
    
    /* Remove transitions that cause issues on mobile */
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(156, 175, 136, 0.1);
}

.nav-link:last-child {
    border-bottom: none;
}

/* CRITICAL: Only apply hover effects on non-touch devices */
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
    .nav-link {
        padding: 14px 22px;
        border-radius: 25px;
        border-bottom: none;
        margin: 0;
        width: auto;
        transition: all 0.3s ease;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-sage) 100%);
        border-radius: 25px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .nav-link:hover::before {
        opacity: 1;
    }
    
    .nav-link:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px var(--shadow);
    }
}

/* Mobile active states - NO HOVER */
.nav-link.active,
.nav-link:focus {
    background-color: rgba(156, 175, 136, 0.15);
    color: var(--deep-sage);
    outline: none;
}

@media (min-width: 769px) {
    .nav-link.active::before {
        opacity: 1;
    }
    
    .nav-link.active {
        color: white;
        background-color: transparent;
    }
}

/* Content Styles */
.content {
    flex: 1;
    padding: 24px 16px;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--soft-cream) 100%);
    
    /* Content fade-in animation */
    animation: contentFadeIn 0.4s ease-out;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce animation on mobile for performance */
@media (max-width: 768px) {
    .content {
        animation: contentFadeInMobile 0.2s ease-out;
    }
    
    @keyframes contentFadeInMobile {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

@media (min-width: 481px) {
    .content {
        padding: 32px 24px;
    }
}

@media (min-width: 769px) {
    .content {
        padding: 50px 40px;
    }
}

.hero-section {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 769px) {
    .hero-section {
        margin-bottom: 50px;
    }
}

.page h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--deep-sage);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@media (min-width: 481px) {
    .page h2 {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }
}

@media (min-width: 769px) {
    .page h2 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
}

.hero-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 481px) {
    .hero-text {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

@media (min-width: 769px) {
    .hero-text {
        font-size: 1.15rem;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Wellness Grid */
.wellness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 32px 0;
}

@media (min-width: 481px) {
    .wellness-grid {
        gap: 24px;
        margin: 40px 0;
    }
}

@media (min-width: 769px) {
    .wellness-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin: 50px 0;
    }
}

.wellness-card {
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 
        0 4px 12px rgba(156, 175, 136, 0.08),
        0 1px 4px rgba(156, 175, 136, 0.04);
    border: 1px solid rgba(156, 175, 136, 0.06);
    position: relative;
    overflow: hidden;
}

@media (min-width: 481px) {
    .wellness-card {
        padding: 28px 22px;
        border-radius: 14px;
    }
}

@media (min-width: 769px) {
    .wellness-card {
        padding: 32px 24px;
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--accent-gold) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

@media (min-width: 769px) and (hover: hover) {
    .wellness-card::before {
        height: 4px;
    }
    
    .wellness-card:hover {
        transform: translateY(-8px);
        box-shadow: 
            0 16px 40px rgba(156, 175, 136, 0.15),
            0 4px 16px rgba(156, 175, 136, 0.08);
    }
    
    .wellness-card:hover::before {
        transform: translateX(0);
    }
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}

@media (min-width: 481px) {
    .card-icon {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
}

@media (min-width: 769px) {
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
}

.wellness-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 10px;
}

@media (min-width: 481px) {
    .wellness-card h3 {
        font-size: 1.3rem;
        margin-bottom: 11px;
    }
}

@media (min-width: 769px) {
    .wellness-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
}

.wellness-card p {
    color: var(--warm-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (min-width: 481px) {
    .wellness-card p {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}

@media (min-width: 769px) {
    .wellness-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dusty-rose) 0%, #f0e8e8 100%);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    margin-top: 32px;
    border: 1px solid rgba(232, 213, 213, 0.4);
}

@media (min-width: 481px) {
    .cta-section {
        padding: 32px 24px;
        border-radius: 18px;
        margin-top: 40px;
    }
}

@media (min-width: 769px) {
    .cta-section {
        border-radius: 20px;
        padding: 40px;
        margin-top: 50px;
    }
}

.cta-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    color: var(--deep-sage);
    margin-bottom: 10px;
    font-weight: 600;
}

@media (min-width: 481px) {
    .cta-content h3 {
        font-size: 1.6rem;
        margin-bottom: 11px;
    }
}

@media (min-width: 769px) {
    .cta-content h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
}

.cta-content p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (min-width: 481px) {
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 26px;
        line-height: 1.7;
    }
}

@media (min-width: 769px) {
    .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 28px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 481px) {
    .cta-buttons {
        gap: 14px;
    }
}

@media (min-width: 769px) {
    .cta-buttons {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 280px;
    
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    cursor: pointer;
    
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 769px) {
    .btn-primary, .btn-secondary {
        width: auto;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-sage) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(156, 175, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-sage);
    border-color: var(--sage-green);
}

@media (min-width: 769px) and (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(156, 175, 136, 0.4);
    }
    
    .btn-secondary:hover {
        background: var(--sage-green);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 4px 16px rgba(156, 175, 136, 0.25);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f2efeb 0%, #eee8e3 100%);
    border-top: 1px solid rgba(156, 175, 136, 0.12);
    padding: 20px 16px;
}

@media (min-width: 481px) {
    .footer {
        padding: 24px 24px;
    }
}

@media (min-width: 769px) {
    .footer {
        padding: 30px 40px;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
    }
    
    .footer-right {
        text-align: right;
    }
}

.footer-left p,
.footer-right p {
    color: var(--warm-gray);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 769px) {
    .footer-left p,
    .footer-right p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.footer-note {
    font-size: 0.75rem !important;
    color: #999 !important;
    margin-top: 4px !important;
}

.phone-label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 2px;
}

.footer-phone a {
    color: var(--deep-sage);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

@media (min-width: 769px) and (hover: hover) {
    .footer-phone a:hover {
        color: var(--sage-green);
    }
}

.footer-hours {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin-top: 4px !important;
}

/* Testimonials Page Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
}

@media (min-width: 769px) {
    .testimonials-grid {
        columns: 2;
        column-gap: 30px;
        gap: 0;
        margin: 50px 0;
    }
}

@media (min-width: 1100px) {
    .testimonials-grid {
        columns: 3;
        column-gap: 30px;
    }
}

.testimonial-card {
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 
        0 6px 20px rgba(156, 175, 136, 0.1),
        0 2px 8px rgba(156, 175, 136, 0.05);
    border: 1px solid rgba(156, 175, 136, 0.08);
    position: relative;
    overflow: hidden;
    break-inside: avoid;
    page-break-inside: avoid;
}

@media (min-width: 769px) {
    .testimonial-card {
        margin-bottom: 30px;
        padding: 32px 28px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--accent-gold) 50%, var(--dusty-rose) 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

@media (min-width: 769px) and (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 
            0 20px 40px rgba(156, 175, 136, 0.15),
            0 8px 24px rgba(156, 175, 136, 0.1);
    }
    
    .testimonial-card:hover::before {
        transform: translateX(0);
    }
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
}

@media (min-width: 481px) {
    .testimonial-date {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .testimonial-date {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
}

blockquote {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--charcoal);
    margin: 0 0 20px 0;
    position: relative;
    padding: 0 12px;
}

@media (min-width: 481px) {
    blockquote {
        font-size: 1.3rem;
        line-height: 1.85;
    }
}

@media (min-width: 769px) {
    blockquote {
        font-size: 1.4rem;
        line-height: 1.9;
        margin-bottom: 24px;
        padding: 0 16px;
    }
}

blockquote::before {
    content: '"';
    font-size: 3.5rem;
    color: var(--sage-green);
    position: absolute;
    left: -8px;
    top: -15px;
    font-family: 'Crimson Text', serif;
    opacity: 0.25;
    line-height: 1;
}

blockquote::after {
    content: '"';
    font-size: 3.5rem;
    color: var(--sage-green);
    position: absolute;
    right: -8px;
    bottom: -25px;
    font-family: 'Crimson Text', serif;
    opacity: 0.25;
    line-height: 1;
}

.testimonial-attribution {
    border-top: 1px solid rgba(156, 175, 136, 0.15);
    padding-top: 16px;
    margin-top: auto;
}

.attribution-text {
    font-size: 0.95rem;
    color: var(--warm-gray);
    font-style: italic;
    text-align: center;
    font-weight: 400;
}

@media (min-width: 481px) {
    .attribution-text {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .attribution-text {
        font-size: 1.05rem;
    }
}

/* Multi-testimonial card styles */
.multi-testimonial .single-testimonial {
    margin-bottom: 20px;
}

.multi-testimonial .single-testimonial:last-of-type {
    margin-bottom: 0;
}

.multi-testimonial .single-testimonial blockquote {
    margin-bottom: 0;
}

.testimonial-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--sage-green) 50%, transparent 100%);
    margin: 24px 0;
    opacity: 0.3;
}

@media (min-width: 769px) {
    .testimonial-separator {
        margin: 28px 0;
    }
}

.multi-testimonial .testimonial-attribution {
    margin-top: 20px;
}

@media (min-width: 769px) {
    .multi-testimonial .testimonial-attribution {
        margin-top: 24px;
    }
}

/* Testimonials Note Section */
.testimonials-note {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, #f0edf7 100%);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin: 40px 0 32px 0;
    border: 1px solid rgba(230, 226, 240, 0.4);
    break-inside: avoid;
    page-break-inside: avoid;
}

@media (min-width: 769px) {
    .testimonials-note {
        padding: 32px 40px;
        border-radius: 18px;
        margin: 50px 0 40px 0;
        column-span: all;
    }
}

.note-content {
    max-width: 600px;
    margin: 0 auto;
}

.note-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

@media (min-width: 769px) {
    .note-icon {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
}

.testimonials-note h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 10px;
    font-weight: 600;
}

@media (min-width: 769px) {
    .testimonials-note h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

.testimonials-note p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .testimonials-note p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Hero Section with Image */
.hero-section h2 {
    text-align: center;
    margin-bottom: 24px;
}

@media (min-width: 769px) {
    .hero-section h2 {
        margin-bottom: 32px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 769px) {
    .hero-content {
        flex-direction: row;
        gap: 32px;
        align-items: flex-start;
    }
}

.hero-image-container {
    flex-shrink: 0;
    width: 120px;
}

@media (min-width: 481px) {
    .hero-image-container {
        width: 140px;
    }
}

@media (min-width: 769px) {
    .hero-image-container {
        width: 160px;
    }
}

.hero-text-container {
    flex: 1;
    text-align: center;
}

@media (min-width: 769px) {
    .hero-text-container {
        text-align: left;
    }
}

.hero-text-container .hero-text {
    margin: 0;
}

.specialist-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 
        0 8px 20px rgba(156, 175, 136, 0.15),
        0 3px 8px rgba(156, 175, 136, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) and (hover: hover) {
    .specialist-image:hover {
        transform: translateY(-3px);
        box-shadow: 
            0 12px 30px rgba(156, 175, 136, 0.2),
            0 6px 16px rgba(156, 175, 136, 0.12);
    }
}

/* Clickable Wellness Cards */
.wellness-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    
    /* Touch optimization */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.wellness-card-link:visited {
    color: inherit;
}

.wellness-card-link:focus {
    outline: 2px solid var(--sage-green);
    outline-offset: 2px;
}

/* Enhanced hover states for clickable cards */
@media (min-width: 769px) and (hover: hover) {
    .wellness-card-link:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 
            0 20px 50px rgba(156, 175, 136, 0.2),
            0 8px 24px rgba(156, 175, 136, 0.12);
    }
    
    .wellness-card-link:hover .card-icon {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(156, 175, 136, 0.3));
    }
    
    .wellness-card-link:hover h3 {
        color: var(--sage-green);
    }
}

.wellness-card-link .card-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wellness-card-link h3 {
    transition: color 0.3s ease;
}

/* Active states for mobile */
.wellness-card-link:active {
    transform: translateY(-2px) scale(0.98);
}

@media (min-width: 769px) {
    .wellness-card-link:active {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 24px;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
}

/* Services Page Styles */
.services-container {
    margin: 40px 0;
}

@media (min-width: 769px) {
    .services-container {
        margin: 60px 0;
    }
}

.services-section {
    margin-bottom: 50px;
}

@media (min-width: 769px) {
    .services-section {
        margin-bottom: 70px;
    }
}

.services-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

@media (min-width: 769px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

.service-card {
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 
        0 6px 20px rgba(156, 175, 136, 0.1),
        0 2px 8px rgba(156, 175, 136, 0.05);
    border: 1px solid rgba(156, 175, 136, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
    .service-card {
        padding: 32px 28px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--accent-gold) 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

@media (min-width: 769px) and (hover: hover) {
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 
            0 20px 40px rgba(156, 175, 136, 0.15),
            0 8px 24px rgba(156, 175, 136, 0.1);
    }
    
    .service-card:hover::before {
        transform: translateX(0);
    }
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 16px;
}

.service-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .service-title {
        font-size: 1.4rem;
    }
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-green);
    white-space: nowrap;
    background: rgba(156, 175, 136, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(156, 175, 136, 0.2);
}

@media (min-width: 769px) {
    .service-price {
        font-size: 1.2rem;
        padding: 6px 14px;
        border-radius: 14px;
    }
}

.service-duration {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 16px;
    font-style: italic;
}

@media (min-width: 769px) {
    .service-duration {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
}

.service-description {
    color: var(--warm-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (min-width: 769px) {
    .service-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Services Note Section */
.services-note {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, #f0edf7 100%);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin: 40px 0 32px 0;
    border: 1px solid rgba(230, 226, 240, 0.4);
}

@media (min-width: 769px) {
    .services-note {
        padding: 32px 40px;
        border-radius: 18px;
        margin: 50px 0 40px 0;
    }
}

.services-note h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: var(--deep-sage);
    margin-bottom: 10px;
    font-weight: 600;
}

@media (min-width: 769px) {
    .services-note h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
}

.services-note p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .services-note p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 32px 0;
}

@media (min-width: 769px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin: 50px 0;
    }
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 481px) {
    .contact-methods {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (min-width: 769px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    border-radius: 12px;
    border: 1px solid rgba(156, 175, 136, 0.1);
    box-shadow: 0 4px 12px rgba(156, 175, 136, 0.08);
}

@media (min-width: 481px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
}

@media (min-width: 769px) {
    .contact-method {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 24px;
    }
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

@media (min-width: 481px) {
    .contact-icon {
        font-size: 2rem;
    }
}

.contact-details h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 0 0 8px 0;
}

@media (min-width: 769px) {
    .contact-details h3 {
        font-size: 1.2rem;
    }
}

.contact-details p {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.contact-details a {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--deep-sage);
}

.contact-note {
    font-size: 0.8rem;
    color: var(--warm-gray);
    font-style: italic;
}

/* Map Section */
.map-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 769px) {
    .map-section h3 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(156, 175, 136, 0.15);
    border: 1px solid rgba(156, 175, 136, 0.1);
    margin-bottom: 16px;
}

@media (min-width: 769px) {
    .map-container {
        border-radius: 16px;
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}

.map-info {
    background: rgba(156, 175, 136, 0.08);
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid rgba(156, 175, 136, 0.15);
}

.map-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    margin: 50px 0;
}

@media (min-width: 769px) {
    .contact-form-section {
        margin: 70px 0;
    }
}

.contact-form-section h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 769px) {
    .contact-form-section h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

.form-intro {
    text-align: center;
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .form-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.contact-form {
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(156, 175, 136, 0.1);
    box-shadow: 0 8px 24px rgba(156, 175, 136, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .contact-form {
        padding: 40px;
        border-radius: 20px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 481px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--deep-sage);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(156, 175, 136, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.1);
}

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

/* Radio and Checkbox Styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 481px) {
    .radio-group {
        flex-direction: row;
        gap: 20px;
    }
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--charcoal);
    cursor: pointer;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    margin: 0;
}

.radio-custom,
.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(156, 175, 136, 0.3);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input:checked + .radio-custom::after,
.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--sage-green);
    border-radius: 50%;
}

.checkbox-label input:checked + .checkbox-custom::after {
    width: 10px;
    height: 6px;
    border: none;
    border-left: 2px solid var(--sage-green);
    border-bottom: 2px solid var(--sage-green);
    background: transparent;
    border-radius: 0;
}

.checkbox-group {
    margin-top: 24px;
}

.checkbox-label {
    line-height: 1.4;
}

.form-submit {
    width: 100%;
    margin-top: 24px;
    padding: 16px 32px;
    font-size: 1rem;
    cursor: pointer;
}

@media (min-width: 481px) {
    .form-submit {
        width: auto;
        margin-top: 32px;
    }
}

/* Emergency Info */
.emergency-info {
    background: linear-gradient(135deg, #fef2f2 0%, #fdf4f4 100%);
    border-radius: 16px;
    padding: 28px 24px;
    margin: 40px 0 0 0;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

@media (min-width: 769px) {
    .emergency-info {
        padding: 32px 40px;
        border-radius: 18px;
    }
}

.emergency-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 12px;
    text-align: center;
}

@media (min-width: 769px) {
    .emergency-content h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

.emergency-content p {
    text-align: center;
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.crisis-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 481px) {
    .crisis-contacts {
        gap: 16px;
    }
}

.crisis-item {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.crisis-item strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.crisis-item a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.crisis-item a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.about-content {
    margin: 40px 0;
}

@media (min-width: 769px) {
    .about-content {
        margin: 60px 0;
    }
}

/* Intro Section */
.intro-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 769px) {
    .intro-section {
        flex-direction: row;
        gap: 50px;
        margin-bottom: 80px;
        align-items: flex-start;
    }
}

.intro-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 769px) {
    .intro-image {
        width: 350px;
        max-width: none;
    }
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 12px 30px rgba(156, 175, 136, 0.15),
        0 4px 12px rgba(156, 175, 136, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) and (hover: hover) {
    .about-image:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 20px 45px rgba(156, 175, 136, 0.2),
            0 8px 20px rgba(156, 175, 136, 0.12);
    }
}

.intro-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 769px) {
    .intro-text {
        text-align: left;
    }
}

.intro-text h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 769px) {
    .intro-text h3 {
        font-size: 2.2rem;
        margin-bottom: 24px;
        text-align: left;
    }
}

.intro-text p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

@media (min-width: 769px) {
    .intro-text p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }
}

/* Section Headings */
.about-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

@media (min-width: 769px) {
    .about-content h3 {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

/* Credentials Section */
.credentials-section {
    margin-bottom: 60px;
}

@media (min-width: 769px) {
    .credentials-section {
        margin-bottom: 80px;
    }
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .credentials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.credential-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    border-radius: 12px;
    border: 1px solid rgba(156, 175, 136, 0.1);
    box-shadow: 0 6px 20px rgba(156, 175, 136, 0.08);
    transition: all 0.3s ease;
}

@media (min-width: 769px) and (hover: hover) {
    .credential-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(156, 175, 136, 0.15);
    }
}

.credential-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credential-details h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .credential-details h4 {
        font-size: 1.2rem;
    }
}

.credential-details p {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

.credential-details span {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
    line-height: 1.4;
}

/* Experience Timeline */
.experience-section {
    margin-bottom: 60px;
}

@media (min-width: 769px) {
    .experience-section {
        margin-bottom: 80px;
    }
}

.experience-timeline {
    position: relative;
    padding-left: 24px;
}

@media (min-width: 769px) {
    .experience-timeline {
        padding-left: 40px;
    }
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--sage-green) 0%, var(--accent-gold) 100%);
}

@media (min-width: 769px) {
    .experience-timeline::before {
        left: 12px;
        width: 3px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
}

@media (min-width: 769px) {
    .timeline-item {
        margin-bottom: 40px;
        padding-left: 32px;
    }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--sage-green);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--sage-green);
}

@media (min-width: 769px) {
    .timeline-item::before {
        left: -24px;
        top: 10px;
        width: 16px;
        height: 16px;
        border: 3px solid white;
    }
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

@media (min-width: 769px) {
    .timeline-date {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

.timeline-content h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 0 0 8px 0;
}

@media (min-width: 769px) {
    .timeline-content h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

.timeline-content p {
    color: var(--warm-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (min-width: 769px) {
    .timeline-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 60px;
}

@media (min-width: 769px) {
    .philosophy-section {
        margin-bottom: 80px;
    }
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 769px) {
    .philosophy-content {
        gap: 40px;
    }
}

.philosophy-quote {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, #f0edf7 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(230, 226, 240, 0.4);
}

@media (min-width: 769px) {
    .philosophy-quote {
        padding: 32px;
        border-radius: 18px;
    }
}

.philosophy-quote blockquote {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--deep-sage);
    margin: 0 0 12px 0;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .philosophy-quote blockquote {
        font-size: 1.4rem;
        margin-bottom: 16px;
        line-height: 1.7;
    }
}

.philosophy-quote cite {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: normal;
}

.philosophy-text p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: center;
}

@media (min-width: 769px) {
    .philosophy-text p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 32px;
        text-align: left;
    }
}

.core-beliefs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .core-beliefs {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.belief-item {
    padding: 20px;
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    border-radius: 12px;
    border: 1px solid rgba(156, 175, 136, 0.1);
    box-shadow: 0 4px 12px rgba(156, 175, 136, 0.08);
}

.belief-item h5 {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .belief-item h5 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

.belief-item p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

@media (min-width: 769px) {
    .belief-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Personal Section */
.personal-section {
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .personal-section {
        margin-bottom: 60px;
    }
}

.personal-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 769px) {
    .personal-content {
        text-align: left;
    }
}

.personal-content p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

@media (min-width: 769px) {
    .personal-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }
}

/* Resources Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 32px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 400;
    margin-top: 16px;
}

@media (min-width: 769px) {
    .page-header {
        margin-bottom: 50px;
    }
    
    .page-subtitle {
        font-size: 1.15rem;
        max-width: 700px;
        margin: 16px auto 0;
    }
}

.resources-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.resource-category {
    background: linear-gradient(145deg, var(--light-gray) 0%, #f8f6f3 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--sage-green);
    box-shadow: 0 4px 12px rgba(156, 175, 136, 0.08);
}

.resource-category h3 {
    font-family: 'Crimson Text', serif;
    color: var(--deep-sage);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.resource-list {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .resource-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.resource-item {
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(156, 175, 136, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.06);
    transition: all 0.3s ease;
}

@media (min-width: 769px) and (hover: hover) {
    .resource-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(156, 175, 136, 0.12);
    }
}

.resource-item h4 {
    font-family: 'Crimson Text', serif;
    color: var(--deep-sage);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.resource-item p {
    margin-bottom: 0.75rem;
    color: var(--warm-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.resource-link {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.resource-link:hover {
    border-bottom-color: var(--sage-green);
}

.resource-item.emergency {
    border-left: 4px solid #dc2626;
    background: linear-gradient(145deg, #fff5f5 0%, #fefcfc 100%);
}

.crisis-contacts {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.crisis-contacts li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(156, 175, 136, 0.06);
}

.crisis-contacts a {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.crisis-contacts a:hover {
    text-decoration: underline;
}

.resources-disclaimer {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, #f0edf7 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #17a2b8;
    border: 1px solid rgba(230, 226, 240, 0.4);
}

.disclaimer-content h3 {
    font-family: 'Crimson Text', serif;
    color: var(--deep-sage);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.disclaimer-content p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--warm-gray);
}

.disclaimer-content a {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 500;
    transition: text-decoration 0.3s ease;
}

.disclaimer-content a:hover {
    text-decoration: underline;
}

/* Map iframe border fix */
.map-container iframe {
    border: 0;
}

/* Article Styles for Resources Page */
.resource-article {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow:
        0 8px 24px rgba(156, 175, 136, 0.1),
        0 2px 8px rgba(156, 175, 136, 0.05);
    border: 1px solid rgba(156, 175, 136, 0.08);
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .resource-article {
        padding: 48px 40px;
        border-radius: 20px;
        margin-bottom: 60px;
    }
}

.article-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(156, 175, 136, 0.1);
}

@media (min-width: 769px) {
    .article-header {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }
}

.article-header h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 16px;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .article-header h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.publication-date,
.article-category {
    background: rgba(156, 175, 136, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.article-category {
    background: rgba(212, 175, 137, 0.1);
    color: var(--accent-gold);
}

.article-content {
    line-height: 1.8;
    color: var(--charcoal);
}

.article-content h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 32px 0 16px 0;
    line-height: 1.4;
}

@media (min-width: 769px) {
    .article-content h4 {
        font-size: 1.5rem;
        margin: 40px 0 20px 0;
    }
}

.article-content h4:first-child {
    margin-top: 0;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

@media (min-width: 769px) {
    .article-content p {
        font-size: 1.05rem;
        margin-bottom: 24px;
        line-height: 1.9;
    }
}

.article-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

@media (min-width: 769px) {
    .article-content ul {
        margin: 24px 0;
        padding-left: 32px;
    }
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--charcoal);
}

@media (min-width: 769px) {
    .article-content li {
        margin-bottom: 10px;
        line-height: 1.8;
    }
}

.article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid rgba(156, 175, 136, 0.1);
}

@media (min-width: 769px) {
    .article-footer {
        margin-top: 50px;
        padding-top: 32px;
    }
}

.references h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 12px;
}

@media (min-width: 769px) {
    .references h4 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
}

.references p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.additional-resources {
    margin-top: 40px;
}

@media (min-width: 769px) {
    .additional-resources {
        margin-top: 60px;
    }
}

.additional-resources h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

@media (min-width: 769px) {
    .additional-resources h3 {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
}

.additional-resources h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
}

.resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 900px) {
    .resource-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.resource-grid .resource-item {
    background: linear-gradient(145deg, white 0%, #fefdfb 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow:
        0 4px 12px rgba(156, 175, 136, 0.08),
        0 1px 4px rgba(156, 175, 136, 0.04);
    border: 1px solid rgba(156, 175, 136, 0.06);
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .resource-grid .resource-item {
        padding: 24px;
    }
}

@media (min-width: 769px) and (hover: hover) {
    .resource-grid .resource-item:hover {
        transform: translateY(-4px);
        box-shadow:
            0 12px 24px rgba(156, 175, 136, 0.12),
            0 4px 12px rgba(156, 175, 136, 0.08);
    }
}

.resource-grid .resource-item h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 769px) {
    .resource-grid .resource-item h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

.resource-grid .resource-item p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 769px) {
    .resource-grid .resource-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}