/* Therapy Glow - Complete Website Styles */

/* CSS Variables */
:root {
    --color-bg: #E8E2D9;
    --color-bg-light: #F5F2EE;
    --color-emerald: #0D4A3A;
    --color-emerald-dark: #093828;
    --color-emerald-light: #156B54;
    --color-gold: #D4AF37;
    --color-gold-light: #E8C547;
    --color-navy: #1a1a3e;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;
    --color-cream: #FAF8F5;
    --color-border: #D9D3CA;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Banner */
.top-banner {
    background-color: var(--color-emerald);
    color: var(--color-white);
    padding: 12px 0;
}

.top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-banner p {
    font-size: 14px;
    font-weight: 400;
}

.btn-banner {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-banner:hover {
    background-color: var(--color-gold);
    color: var(--color-emerald);
}

/* Navigation - Dusty Rose Background */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #cbb6b5;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    filter: contrast(1.1);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-emerald-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-emerald-dark);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gold);
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-emerald);
    transition: var(--transition-smooth);
}

.btn-nav-cta:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-emerald-dark);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    background-color: #1a1a1a;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            circle at 50% 35%,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.48) 55%,
            rgba(0, 0, 0, 0.62) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.38) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-text-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-text {
    max-width: 520px;
    color: var(--color-white);
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Slide 1 - Hero Image: position face on the right side */
.hero-slide[data-slide="0"] .hero-image img {
    object-position: 75% center;
}

/* Slide 2 - Office: center the image */
.hero-slide[data-slide="1"] .hero-image img {
    object-position: center center;
}

/* Slide 3 - About: position face on the right side */
.hero-slide-about .hero-image img {
    object-position: 70% center;
}

.hero-content-about {
    justify-content: flex-start;
}

.hero-text-about {
    max-width: 480px;
}

.hero-text-about h1 {
    font-size: 38px;
}

@media (max-width: 768px) {
    .hero-text-about h1 {
        font-size: 24px;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    color: var(--color-emerald);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--color-gold);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-emerald);
}

/* Hero Microcopy */
.hero-microcopy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-style: italic;
}

/* Text Link Style */
.btn-text-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gold);
    margin-top: 20px;
    position: relative;
}

.btn-text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.btn-text-link:hover::after {
    width: 100%;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background-color: var(--color-gold);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: var(--color-gold);
    color: var(--color-emerald);
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

/* Why Therapy Glow Section - Emerald Background */
.why-section {
    padding: 100px 0;
    background-color: var(--color-emerald);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.rotating-logo {
    display: block;
    width: 180px;
    height: 180px;
    margin: 24px auto 32px;
    /* Animation disabled - static logo */
    background: transparent !important;
    mix-blend-mode: normal;
    opacity: 0.9;
    object-fit: contain;
}

@media (max-width: 900px) {
    .hero-text-wrapper {
        gap: 30px;
    }
    
    .rotating-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .rotating-logo {
        width: 120px;
        height: 120px;
    }
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-section .section-title {
    color: var(--color-gold);
}

.why-intro {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.4;
}

.why-text {
    margin-bottom: 48px;
}

.why-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.why-text strong {
    font-weight: 600;
    color: var(--color-gold);
}

.issues-intro {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.issues-list {
    list-style: none;
    padding: 0;
    margin-left: 15px;
}

.issues-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.issues-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

/* Pillars Section */
.pillars-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.pillar-card {
    background-color: var(--color-cream);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

/* Pillar Image */
.pillar-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 24px;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-image img {
    transform: scale(1.02);
}

/* Pillar Image Placeholder (fallback) */
.pillar-image-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.placeholder-icon {
    font-size: 48px;
    color: var(--color-gold);
    opacity: 0.6;
}

.pillar-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-emerald);
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Services Carousel Section */
.services-carousel-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.services-carousel {
    position: relative;
    overflow: hidden;
}

.services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.service-carousel-card {
    flex: 0 0 calc(33.333% - 16px);
    background-color: var(--color-cream);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-carousel-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
    border-color: var(--color-emerald);
}

.service-carousel-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-emerald);
}

.service-carousel-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-emerald);
    border: none;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background-color: var(--color-emerald-light);
    transform: scale(1.1);
}

/* Therapist Section */
.therapist-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.therapist-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.therapist-image {
    position: sticky;
    top: 120px;
}

.therapist-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.therapist-content {
    padding-top: 20px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-emerald);
    margin-bottom: 12px;
}

.therapist-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--color-text);
}

.therapist-bio p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
}

.therapist-bio ul {
    margin: 24px 0;
    padding-left: 20px;
}

.therapist-bio ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--color-text-light);
}

.therapist-bio ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--color-emerald);
    border-radius: 50%;
}

.closing-quote {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--color-emerald);
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--color-cream);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-emerald);
    font-style: normal;
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.resource-card {
    background-color: var(--color-cream);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.resource-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
    border-color: var(--color-emerald);
}

.resource-image {
    height: 180px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Resource Image */
.resource-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.resource-card:hover .resource-image img {
    transform: scale(1.02);
}

/* Resource Image Placeholder */
.resource-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
}

.resource-image-placeholder .placeholder-icon {
    font-size: 56px;
}

.resource-content {
    padding: 24px;
}

.resource-date {
    font-size: 13px;
    color: var(--color-emerald);
    font-weight: 500;
    margin-bottom: 12px;
}

.resource-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--color-text);
}

.view-all-resources {
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--color-emerald);
}

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

.newsletter-content h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
}

.newsletter-benefits {
    margin-bottom: 32px;
}

.newsletter-benefits ul {
    text-align: left;
    display: inline-block;
}

.newsletter-benefits li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.newsletter-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-text);
}

.cta-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
}

/* Who Is This Work For Section */
.who-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.who-for-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: var(--color-cream);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.who-for-icon {
    font-size: 20px;
    color: var(--color-emerald);
    flex-shrink: 0;
    margin-top: 2px;
}

.who-for-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
}

.who-for-note {
    text-align: center;
    font-size: 15px;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* Service Cards with Bubble Images */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--color-cream);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.service-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-bubble img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-emerald);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Fee Schedule Section */
.fee-section {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.fee-card {
    background-color: var(--color-cream);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.fee-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.fee-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-emerald);
}

.fee-price {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.fee-detail {
    font-size: 13px;
    color: var(--color-text-light);
    margin: 0;
}

.reduced-fee-note {
    background-color: var(--color-cream);
    padding: 24px 32px;
    border-radius: 12px;
    border-left: 4px solid var(--color-emerald);
    max-width: 800px;
    margin: 0 auto;
}

.reduced-fee-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* What Informs My Work Section */
.informs-section {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.informs-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.informs-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.informs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.informs-card {
    background-color: var(--color-cream);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.informs-card:hover {
    box-shadow: var(--shadow-soft);
}

.informs-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.informs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.informs-card:hover .informs-image img {
    transform: scale(1.02);
}

.informs-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-emerald);
}

.informs-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* Therapeutic Modalities Section */
.modalities-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.modalities-intro {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .modalities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .modalities-grid {
        grid-template-columns: 1fr;
    }
}

.modality-card {
    background-color: var(--color-cream);
    padding: 0;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.modality-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--color-emerald);
}

.modality-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.modality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modality-card:hover .modality-image img {
    transform: scale(1.02);
}

.modality-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin: 20px 24px 12px;
    color: var(--color-emerald);
}

.modality-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 24px 24px;
}

/* Service Header Image */
.service-header-image {
    margin-top: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.service-header-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

/* Related Articles Section */
.related-articles-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.related-article-card {
    background-color: var(--color-cream);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.related-article-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
    border-color: var(--color-emerald);
}

.related-article-card .resource-image {
    height: 160px;
    overflow: hidden;
}

.related-article-card .resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-article-card:hover .resource-image img {
    transform: scale(1.02);
}

.related-article-card .resource-content {
    padding: 20px;
}

.related-article-card .resource-date {
    font-size: 13px;
    color: var(--color-emerald);
    font-weight: 500;
    margin-bottom: 8px;
}

.related-article-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-text);
}

.related-article-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* IntakeQ Section */
.intakeq-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.intakeq-wrapper {
    display: flex;
    justify-content: center;
}

/* Form Note */
.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #cbb6b5;
    color: var(--color-emerald-dark);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-creds {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(13, 74, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-dark);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-emerald);
    color: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-emerald);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--color-emerald);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--color-emerald);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(13, 74, 58, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Page Header */
.page-header {
    background-color: var(--color-emerald);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--color-white);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
}

.breadcrumbs a {
    color: var(--color-emerald);
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

/* Article Page Styles */
.article-page {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-cream);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--color-text-light);
}

.article-meta .date {
    color: var(--color-emerald);
    font-weight: 500;
}

.article-content h1 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--color-text);
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0 20px;
    color: var(--color-emerald);
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin: 32px 0 16px;
    color: var(--color-text);
}

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

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

.article-content li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.article-content blockquote {
    border-left: 4px solid var(--color-emerald);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-text-light);
}

/* Service Page Styles */
.service-page {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro {
    background-color: var(--color-cream);
    padding: 48px;
    border-radius: 20px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-soft);
}

.service-intro h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-emerald);
}

.service-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-card {
    background-color: var(--color-cream);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-emerald);
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
    background-color: var(--color-bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    background-color: var(--color-cream);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-emerald);
}

.contact-method {
    margin-bottom: 32px;
}

.contact-method h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method p, .contact-method a {
    font-size: 16px;
    color: var(--color-text);
}

.contact-method a:hover {
    color: var(--color-emerald);
}

.contact-form {
    background-color: var(--color-cream);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-form h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-emerald);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-sans);
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(13, 74, 58, 0.1);
}

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

/* Section Title */
.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text);
}

/* Buttons */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background-color: transparent;
    border: 2px solid var(--color-emerald);
    color: var(--color-emerald);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-view-all:hover {
    background-color: var(--color-emerald);
    color: var(--color-white);
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-emerald);
    position: relative;
}

.btn-learn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-emerald);
    transition: var(--transition-smooth);
}

.btn-learn:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pillars-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .therapist-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .therapist-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-carousel-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .btn-nav-cta {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #727f7a;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero Section Mobile - Image on top, text below */
    .hero {
        height: auto;
        min-height: auto;
    }
    
    .hero-slide {
        position: relative;
        height: auto;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .hero-slide.active {
        display: block;
    }
    
    .hero-image {
        position: relative;
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-image::after {
        display: none;
    }
    
    .hero-image img {
        object-position: center 20%;
    }
    
    .hero-content {
        position: relative;
        height: auto;
        background-color: #727f7a;
        padding: 32px 20px;
        display: block;
    }
    
    .hero-text-wrapper {
        display: block;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: left;
        background: none;
        padding: 0;
    }
    
    .hero-text h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
        text-shadow: none;
    }
    
    .hero-text p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
        opacity: 0.9;
    }
    
    .hero-label {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-microcopy {
        font-size: 11px;
        margin-top: 4px;
    }
    
    /* Carousel nav on mobile */
    .carousel-nav {
        bottom: auto;
        top: 45vh;
    }
    
    /* Carousel navigation mobile */
    .carousel-nav {
        bottom: 20px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    /* Why Section Mobile */
    .why-section {
        padding: 60px 0;
    }
    
    .why-intro {
        font-size: 22px;
    }
    
    .why-text p {
        font-size: 15px;
    }
    
    .rotating-logo {
        width: 120px;
        height: 120px;
        margin: 16px auto 24px;
    }
    
    /* Pillars Section Mobile - Swipe Carousel */
    .pillars-section {
        padding: 60px 0;
    }
    
    .pillars-carousel-wrapper {
        position: relative;
        overflow: hidden;
    }
    
    .pillars-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        transition: transform 0.3s ease-out;
        touch-action: pan-y;
    }
    
    .pillar-card {
        flex: 0 0 100%;
        padding: 24px;
        min-width: 100%;
    }
    
    .pillar-image {
        aspect-ratio: 16 / 9;
    }
    
    .pillars-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 24px;
    }
    
    .pillar-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(13, 74, 58, 0.2);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .pillar-dot.active {
        background-color: var(--color-emerald);
    }
    
    /* Services Carousel Mobile */
    .services-carousel-section {
        padding: 60px 0;
    }
    
    .service-carousel-card {
        flex: 0 0 100%;
        padding: 28px;
    }
    
    /* Therapist Section Mobile */
    .therapist-section {
        padding: 60px 0;
    }
    
    .therapist-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .therapist-image {
        position: static;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .therapist-content h2 {
        font-size: 28px;
    }
    
    .therapist-bio p {
        font-size: 15px;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    /* Resources Mobile */
    .resources-section {
        padding: 60px 0;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card h3 {
        font-size: 18px;
    }
    
    /* Newsletter Mobile */
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 26px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .main-footer {
        padding: 48px 0 24px;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 40px 0 32px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* Breadcrumbs Mobile */
    .breadcrumbs {
        padding: 16px 0;
    }
    
    /* Article Page Mobile */
    .article-page {
        padding: 40px 0;
    }
    
    .article-content {
        padding: 24px;
        border-radius: 16px;
    }
    
    .article-content h1 {
        font-size: 24px;
    }
    
    .article-content h2 {
        font-size: 22px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .article-content p {
        font-size: 15px;
    }
    
    .article-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    /* Services Page Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-bubble {
        width: 64px;
        height: 64px;
    }
    
    /* Fee Section Mobile */
    .fee-section {
        padding: 60px 0;
    }
    
    .fee-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-price {
        font-size: 28px;
    }
    
    /* Contact Page Mobile */
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info,
    .contact-form {
        padding: 28px;
    }
    
    /* Who For Grid Mobile */
    .who-for-grid {
        grid-template-columns: 1fr;
    }
    
    .who-for-item {
        padding: 16px;
    }
    
    /* Modalities Grid Mobile */
    .modalities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Informs Grid Mobile */
    .informs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Features Mobile */
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Small Mobile Screens (under 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-image {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-content {
        padding: 24px 16px;
    }
    
    .hero-text h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 13px;
        margin-bottom: 14px;
        line-height: 1.45;
    }
    
    .hero-label {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .carousel-nav {
        top: 40vh;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .why-intro {
        font-size: 18px;
    }
    
    .rotating-logo {
        width: 100px;
        height: 100px;
    }
    
    .pillar-card h3,
    .service-carousel-card h3 {
        font-size: 20px;
    }
    
    .therapist-content h2,
    .cta-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content h2 {
        font-size: 22px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h1 {
        font-size: 22px;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    .testimonial-card blockquote p {
        font-size: 14px;
    }
    
    .closing-quote {
        font-size: 16px;
    }
    
    .fee-price {
        font-size: 24px;
    }
    
    .logo img {
        height: 48px;
    }
    
    .main-nav {
        padding: 8px 0;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .carousel-btn,
    .carousel-arrow,
    .btn-primary,
    .btn-secondary,
    .btn-nav-cta,
    .btn-learn,
    .btn-view-all {
        min-height: 44px;
    }
    
    .carousel-dot {
        width: 14px;
        height: 14px;
    }
    
    .nav-links a {
        padding: 12px 0;
    }
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }
}
