/* Base styles and CSS variables */
:root {
    /* Primary colors */
    --color-background: #faf8f5; /* Light cream/off-white */
    --color-accent: #445A44; /* Muted green */
    --color-text: #2c2c2c; /* Dark grey for contrast */
    --color-text-light: #666666;
    
    /* Pink/Rose colors */
    --color-petal-blush: #F2B6C6; /* Warm, gentle pink from the blossoms - nurturing, heart-opening */
    --color-rose-accent: #E6A1B2; /* Softer and slightly deeper; great for accents, buttons, or highlights */
    
    /* Gold */
    --color-inner-light-gold: #F6D37A; /* The glowing "soul light" at the center of the tree - beautiful for CTAs or subtle emphasis */
    
    /* Greens - grounded + calming */
    --color-fresh-leaf-green: #9FC89A; /* Light, spring-like green - ideal for backgrounds or large sections */
    --color-meadow-green: #7FAF7B; /* Grounding and organic; pairs beautifully with white text */
    --color-forest-shadow-green: #4F6F57; /* A deeper anchor color for headings, nav, or footers */
    
    /* Light & Neutral tones */
    --color-sunlit-cream: #FBF5E6; /* Perfect as a primary background instead of stark white */
    --color-warm-mist: #EFE6D8; /* A soft neutral that keeps things airy and elegant */
    
    /* Optional accent (from the stream) */
    --color-soft-water-reflection: #A6C4C9; /* Use sparingly - lovely for dividers, icons, or subtle UI moments */
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

/* Respect prefers-reduced-motion for smooth scrolling */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip to main content link - Accessibility feature */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10000;
    background-color: var(--color-accent, #445A44);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0 0 4px 0;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-forest-shadow-green, #4F6F57);
    outline-offset: -3px;
}

.skip-link:hover {
    background-color: var(--color-forest-shadow-green, #4F6F57);
}

@media (prefers-reduced-motion: reduce) {
    .skip-link {
        transition: none;
    }
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    min-height: 60px;
    display: block;
    width: 100%;
}

lumhara-header {
    display: block;
    width: 100%;
    min-height: 60px;
}

/* Placeholder section styles */
section {
    padding: var(--spacing-xl) var(--spacing-md);
    min-height: 50vh;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: var(--spacing-md);
    color: var(--color-forest-shadow-green);
    font-size: 2rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

/* Japanese brushstroke underline effect */
section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-petal-blush) 0%, var(--color-rose-accent) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    transform: skewX(-15deg);
}

section h1 {
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: var(--spacing-md);
    color: var(--color-forest-shadow-green);
    font-size: 2.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
    line-height: 1.25;
}

/* Japanese brushstroke underline effect for h1 */
section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-petal-blush) 0%, var(--color-inner-light-gold) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    transform: skewX(-15deg);
}

section p {
    color: var(--color-text);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Policy, Terms, and Accessibility pages */
#privacy-policy,
#terms,
#accessibility {
    padding-top: calc(var(--spacing-xl) + 60px); /* Account for fixed header */
}

/* Ensure h1 styling matches Contact page */
#privacy-policy h1,
#terms h1,
#accessibility h1 {
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: var(--spacing-md);
    color: var(--color-forest-shadow-green);
    font-size: 2.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

#privacy-policy h1::after,
#terms h1::after,
#accessibility h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-petal-blush) 0%, var(--color-inner-light-gold) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    transform: skewX(-15deg);
}

.policy-intro,
.terms-intro,
.accessibility-intro {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.policy-content,
.terms-content,
.accessibility-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2,
.terms-content h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    color: var(--color-forest-shadow-green);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.policy-content h2::after,
.terms-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-petal-blush) 0%, transparent 100%);
    border-radius: 1px;
    opacity: 0.6;
    transform: skewX(-15deg);
}

.policy-content ul,
.terms-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
    line-height: 1.8;
}

.policy-content li,
.terms-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    font-size: 1.125rem;
}

.policy-content li strong,
.terms-content li strong {
    color: var(--color-forest-shadow-green);
    font-weight: 600;
}

.policy-content a,
.terms-content a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.policy-content a:hover,
.terms-content a:hover,
.accessibility-content a:hover,
.policy-content a:focus,
.terms-content a:focus,
.accessibility-content a:focus {
    color: var(--color-forest-shadow-green);
    outline: none;
}

.accessibility-intro {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

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

.accessibility-content h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    color: var(--color-forest-shadow-green);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.accessibility-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-petal-blush) 0%, transparent 100%);
    border-radius: 1px;
    opacity: 0.6;
    transform: skewX(-15deg);
}

.accessibility-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
    line-height: 1.8;
}

.accessibility-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    font-size: 1.125rem;
}

.accessibility-content li strong {
    color: var(--color-forest-shadow-green);
    font-weight: 600;
}

.accessibility-content a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

@media (min-width: 1025px) {
    section {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
}

/* Our Approach section styles */
#my-approach {
    position: relative;
    background-color: var(--color-background);
}

/* Subtle background texture/pattern for approach section with watercolor effect */
#my-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 182, 198, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(159, 200, 154, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(166, 196, 201, 0.03) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
    z-index: 0;
}

#my-approach > h2 {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.approach-main-content {
    position: relative;
    z-index: 1;
}

/* Main content area with quote and story */
.approach-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.philosophy-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-align: center;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-image: url('../assets/images/yinyang.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.philosophy-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 248, 245, 0.9);
    z-index: 0;
    pointer-events: none;
}
.philosophy-quote blockquote {
    margin: 0;
    padding: 2rem 0 0;
    border: none;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.philosophy-quote blockquote:not(:last-child) {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(68, 90, 68, 0.1);
}

.philosophy-quote blockquote p {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

.philosophy-quote blockquote cite {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text-light);
    margin-top: var(--spacing-sm);
    font-weight: 400;
}

.approach-content {
    position: relative;
}

/* Approach intro with headshot - centered layout */
.approach-intro {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--spacing-md);
    align-items: center;
}

.approach-headshot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    order: 2;
}

.approach-headshot img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0 -15px;
    border: 3px solid rgba(68, 90, 68, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.approach-intro-text {
    width: 100%;
    order: 1;
}

.approach-lead {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0;
    max-width: 665px;
    width: 100%;
    margin: 0 auto;
}

.approach-lead strong {
    color: var(--color-forest-shadow-green);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    max-width: 545px;
}

/* Approach story section */
.approach-story {
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
}

.approach-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
}

/* Approach summary section */
.approach-summary {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(68, 90, 68, 0.1);
}

.approach-summary h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    color: var(--color-forest-shadow-green);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.approach-summary h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-petal-blush) 0%, transparent 100%);
    border-radius: 1px;
    opacity: 0.6;
    transform: skewX(-15deg);
}

.approach-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    text-align: center;
}

.approach-item img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    object-position: center;
    margin-bottom: var(--spacing-sm);
}

.approach-item {
    padding: var(--spacing-md) 0;
    position: relative;
}

.approach-item-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.approach-item-header .approach-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent, #445A44);
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.approach-item:hover .approach-item-header .approach-icon {
    color: var(--color-forest-shadow-green, #4F6F57);
    transform: scale(1.1);
}

.approach-item h4 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    color: var(--color-accent);
    margin: 0 0 1rem 0;
    font-weight: 400;
    line-height: 1.3;
}

.approach-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
    padding-left: calc(1.5rem + var(--spacing-sm));
}

/* Desktop: Enhanced layout */
@media (min-width: 1025px) {
    .approach-main-content {
        grid-template-columns: 40% 1fr;
        gap: var(--spacing-xl);
        align-items: start;
    }
    
    .philosophy-quote {
        text-align: left;
        margin: 0;
    }
    
    .approach-content {
        padding-left: var(--spacing-md);
    }
    
    .approach-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .approach-item p {
        padding-left: 0;
    }
}

/* Tablet: Two-column layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .approach-main-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .philosophy-quote {
        text-align: left;
        margin: 0;
    }
    
    .philosophy-quote::before {
        left: -0.5rem;
        transform: none;
    }
    
    .approach-content {
        padding-left: var(--spacing-md);
    }
    
    .approach-intro {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .approach-headshot {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .approach-intro-text {
        order: 2;
    }
    
    .approach-headshot img {
        width: 250px;
        height: 250px;
    }
}

/* Mobile: Stacked layout */
@media (max-width: 768px) {
    .approach-main-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .philosophy-quote {
        text-align: center;
    }
    
    .approach-content {
        padding-left: 0;
    }
    
    .philosophy-quote blockquote p {
        font-size: 1.25rem;
    }
    
    .approach-intro {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .approach-headshot {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .approach-intro-text {
        order: 2;
    }
    
    .approach-headshot img {
        width: 250px;
        height: 250px;
    }
    
    .approach-lead {
        font-size: 1.125rem;
    }
    
    .approach-summary h3 {
        font-size: 1.5rem;
    }
    
    .approach-item h4 {
        font-size: 1.125rem;
    }
    
    .approach-item p {
        padding-left: 0;
    }
    
    .approach-item-header .approach-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Offerings section styles */
#offerings {
    position: relative;
    background-color: var(--color-background);
}

/* Featured offer styles */
.featured-offer {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    position: relative;
    background-color: rgba(68, 90, 68, 0.05);
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.featured-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(242, 182, 198, 0.3) 0%, transparent 80%);
}

.featured-offer-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.featured-offer h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.featured-offer-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.featured-offer-details {
    margin-bottom: var(--spacing-md);
}

.featured-offer-details p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.featured-offer-details p:last-child {
    margin-bottom: 0;
}

.featured-offer-details strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* CTA button styles with watercolor effect */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-forest-shadow-green) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(68, 90, 68, 0.2);
}

/* Subtle watercolor wash on button */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--color-meadow-green) 0%, var(--color-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(68, 90, 68, 0.3);
}

.cta-button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.cta-button:active {
    transform: translateY(0);
}

/* Offerings grid styles */
.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Offering card styles */
.offering-card {
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(68, 90, 68, 0.2);
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Watercolor effect on offering cards */
.offering-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 182, 198, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offering-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.offering-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.offering-details {
    margin-bottom: var(--spacing-md);
}

.offering-details p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.offering-details p:last-child {
    margin-bottom: 0;
}

.offering-details strong {
    color: var(--color-accent);
    font-weight: 600;
}

.offering-status {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.offering-card .cta-button {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Desktop: 2-3 columns for card grid */
@media (min-width: 1025px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .featured-offer {
        padding: var(--spacing-xl);
    }
    
    .featured-offer h3 {
        font-size: 2.25rem;
    }
}

/* Tablet: 2 columns for card grid */
@media (min-width: 769px) and (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Mobile: 1 column (stacked) */
@media (max-width: 768px) {
    .featured-offer {
        padding: var(--spacing-md);
    }
    
    .featured-offer h3 {
        font-size: 1.75rem;
    }
    
    .offering-card {
        padding: var(--spacing-sm);
    }
    
    .offering-card h3 {
        font-size: 1.25rem;
    }
}

/* Coming Soon section styles */
#coming-soon {
    position: relative;
    background-color: var(--color-background);
}

.coming-soon-card {
    position: relative;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(68, 90, 68, 0.08) 0%, rgba(166, 196, 201, 0.05) 100%);
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Watercolor effect on coming soon card */
.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/newsletter-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.coming-soon-badge {
    position: absolute;
    top: -1rem;
    right: var(--spacing-md);
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.coming-soon-logo {
    text-align: center;
}

.coming-soon-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.coming-soon-text {
    text-align: center;
}

.coming-soon-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.coming-soon-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.coming-soon-card .cta-button {
    margin: 0 auto;
}

/* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    max-height: 90vh;
    width: 100%;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.modal-close:hover {
    background-color: var(--color-accent);
    color: #ffffff;
}

.modal-close:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.modal-close:active {
    transform: scale(0.95);
}

.modal-content {
    padding: var(--spacing-xl);
    overflow: auto;
    max-height: 90vh;
}

.modal-iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 4px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Modal animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.modal.fade-in .modal-backdrop,
.modal.fade-in .modal-container {
    animation: fadeIn 0.3s ease-in-out;
}

.modal.fade-out .modal-backdrop,
.modal.fade-out .modal-container {
    animation: fadeOut 0.3s ease-in-out;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .modal.fade-in .modal-backdrop,
    .modal.fade-in .modal-container,
    .modal.fade-out .modal-backdrop,
    .modal.fade-out .modal-container {
        animation: none;
    }
}

/* Desktop: Two-column layout for coming soon card */
@media (min-width: 1025px) {
    .coming-soon-content {
        grid-template-columns: 1fr 2fr;
        gap: var(--spacing-xl);
        align-items: center;
    }
    
    .coming-soon-logo {
        text-align: left;
    }
    
    .coming-soon-text {
        text-align: left;
    }
    
    .coming-soon-card h3 {
        font-size: 3rem;
    }
    
    .coming-soon-card {
        padding: var(--spacing-xl) var(--spacing-xl);
    }
}

/* Tablet: Adjusted spacing */
@media (min-width: 769px) and (max-width: 1024px) {
    .coming-soon-card {
        padding: var(--spacing-lg);
    }
    
    .coming-soon-card h3 {
        font-size: 2.25rem;
    }
}

/* Mobile: Stacked layout */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: var(--spacing-md);
    }
    
    .coming-soon-card h3 {
        font-size: 2rem;
    }
    
    .coming-soon-logo img {
        max-width: 150px;
    }
    
    .modal-container {
        max-height: 95vh;
        margin: var(--spacing-sm);
    }
    
    .modal-content {
        padding: var(--spacing-md);
    }
    
    .modal-iframe {
        min-height: 500px;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

/* Testimonials section styles */
#testimonials {
    position: relative;
    background-color: var(--color-background);
}

.testimonial-video {
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    background-color: #000;
}

.testimonial-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.85);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(68, 90, 68, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Watercolor effect on testimonial cards */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(159, 200, 154, 0.06) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
    border: none;
    font-style: italic;
}

.testimonial-quote p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(68, 90, 68, 0.1);
}

.testimonial-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.125rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
}

.testimonial-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
    font-weight: 300;
}

/* Desktop: 2 columns for testimonial grid */
@media (min-width: 1025px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .testimonial-card {
        padding: var(--spacing-xl);
    }
}

/* Tablet: 2 columns for testimonial grid */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
}

/* Mobile: 1 column (stacked) */
@media (max-width: 768px) {
    .testimonial-video {
        margin-bottom: var(--spacing-lg);
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
}

/* About Me page styles */
#about-intro {
    padding-top: calc(var(--spacing-xl) + 60px); /* Account for fixed header */
}

.about-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

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

.about-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(68, 90, 68, 0.1);
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-lead {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

#about-story,
#about-approach,
#about-work,
#about-invitation {
    max-width: 900px;
    margin: 0 auto;
}

.about-story-content,
.about-work-content,
.about-invitation-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-approach-content {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.about-approach-item {
    background-color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-lg);
    border-radius: 8px;
    border: 1px solid rgba(68, 90, 68, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Watercolor effect on approach items */
.about-approach-item::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(246, 211, 122, 0.08) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-approach-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.about-approach-item:hover::before {
    opacity: 1;
}

.about-approach-item h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Brushstroke accent on approach item headings */
.about-approach-item h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-inner-light-gold) 0%, transparent 100%);
    border-radius: 1px;
    opacity: 0.5;
}

.about-approach-item p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

.about-cta {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-top: var(--spacing-md);
}

.cta-link {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: var(--color-text);
}

.cta-link:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Desktop: 2-3 columns for approach items */
@media (min-width: 1025px) {
    .about-intro-content {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--spacing-xl);
        align-items: center;
    }
    
    .about-intro-image {
        text-align: left;
    }
    
    .about-intro-image img {
        max-width: 400px;
    }
    
    .about-approach-content {
        gap: var(--spacing-xl);
    }
    
    .about-approach-item {
        padding: var(--spacing-xl);
    }
}

/* Tablet: 2 columns for approach items */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-intro-content {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .about-intro-image img {
        max-width: 350px;
    }
    
    .about-approach-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Mobile: 1 column (stacked) */
@media (max-width: 768px) {
    #about-intro {
        padding-top: calc(var(--spacing-lg) + 60px);
    }
    
    .about-lead {
        font-size: 1.25rem;
    }
    
    .about-approach-item {
        padding: var(--spacing-md);
    }
    
    .about-approach-item h3 {
        font-size: 1.25rem;
    }
}

/* Contact section styles */
#contact {
    position: relative;
    background-color: var(--color-background);
    padding-top: calc(var(--spacing-xl) + 60px); /* Account for fixed header */
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.contact-intro p {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.75);
    padding: var(--spacing-xl);
    border-radius: 8px;
    border: 1px solid rgba(68, 90, 68, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Watercolor effect on contact form */
.contact-form::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(166, 196, 201, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.form-group {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.required {
    color: var(--color-accent);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(68, 90, 68, 0.2);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(68, 90, 68, 0.1);
}

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

.contact-form .cta-button {
    width: 100%;
    margin-top: var(--spacing-md);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.form-messages {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    display: none;
}

.form-messages.success {
    display: block;
    background-color: rgba(68, 90, 68, 0.1);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.form-messages.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.form-messages.info {
    display: block;
    background-color: rgba(68, 90, 68, 0.1);
    color: var(--color-accent, #445A44);
    border: 1px solid var(--color-accent, #445A44);
}

.contact-form input:disabled,
.contact-form textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

/* Mobile: Adjust contact form */
@media (max-width: 768px) {
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .contact-intro {
        margin-bottom: var(--spacing-lg);
    }
}

/* Footer component styles are now in the web component's Shadow DOM */
lumhara-footer {
    display: block;
    width: 100%;
}

