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

:root {
    /* Primary brand color and wellness color system */
    --primary: #f4670a;
    --primary-dark: #d45a08;
    --primary-light: #ff9d5c;
    --primary-soft: #fff4ed;
    --primary-pastel: #ffe8d6;
    
    /* Wellness complementary colors - softer, more natural */
    --wellness-green: #6b8e6b;
    --wellness-green-light: #a8c5a8;
    --wellness-green-soft: #f0f7f0;
    
    --wellness-sage: #9caf9c;
    --wellness-cream: #faf9f6;
    --wellness-warm: #fffaf5;
    
    /* Neutral wellness palette */
    --text-dark: #2c2c2c;
    --text: #4a4a4a;
    --text-light: #6b6b6b;
    --text-soft: #8a8a8a;
    
    --bg-pure: #ffffff;
    --bg-cream: #fefcf9;
    --bg-warm: #fffaf5;
    --bg-soft: #faf9f6;
    
    --border-soft: #e8e6e1;
    --border-light: #f0ede8;
    
    /* Softer shadows for wellness feel */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.1);
    
    /* Spacing - more generous for wellness */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--bg-pure);
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

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

/* Header - softer, more organic */
header {
    background-color: var(--bg-pure);
    box-shadow: var(--shadow-xs);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    max-height: 55px;
    width: auto;
    display: block;
}

.header-practitioner {
    max-height: 65px;
    width: auto;
    display: block;
    filter: drop-shadow(var(--shadow-sm));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.75rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section - wellness focused */
.hero {
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 50%, var(--primary-soft) 100%);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-pastel) 0%, transparent 70%);
    opacity: 0.6;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--wellness-green-soft) 0%, transparent 70%);
    opacity: 0.5;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 650px;
}

.slogan {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary-soft);
    border-radius: 50px;
    border: 1px solid var(--primary-pastel);
}

.hero h1 {
    font-size: 3.25rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    color: var(--text);
    line-height: 1.6;
    font-family: 'Lora', serif;
    font-style: italic;
}

.intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-practitioner {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(var(--shadow-md));
    border-radius: 20px;
}

/* Trust Signals - softer, more organic */
.trust-signals {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-cream) 100%);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-headline {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-family: 'Lora', serif;
    font-style: italic;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    background-color: var(--bg-pure);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pastel);
}

.badge:hover::before {
    transform: scaleX(1);
}

.badge h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.01em;
}

.trust-text {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 650px;
    margin: var(--spacing-lg) auto 0;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Lora', serif;
}

/* Services - wellness styling */
.services {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-pure);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    line-height: 1.9;
    font-style: italic;
    font-family: 'Lora', serif;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto var(--spacing-xl);
}

.services-list li {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-pure) 100%);
    border-left: 5px solid var(--primary);
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.services-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    border-left-color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg-pure) 100%);
}

.services-list li:hover::before {
    opacity: 1;
    left: 8px;
}

/* Gallery Section */
.gallery-section {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    overflow: hidden;
    position: relative;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: var(--spacing-md);
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.gallery-container:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-light);
}

.gallery-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
    z-index: 10;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    line-height: 1;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .gallery-item {
        width: 120px;
        height: 120px;
    }
    
    .gallery-track {
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100px;
        height: 100px;
    }
    
    .lightbox-close {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Home Visits */
.home-visits {
    background: linear-gradient(135deg, var(--wellness-green-soft) 0%, var(--bg-cream) 50%, var(--bg-warm) 100%);
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.home-visits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--wellness-green-soft) 0%, transparent 70%);
    opacity: 0.6;
    border-radius: 50%;
    filter: blur(40px);
}

.home-visits h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.visit-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.benefit {
    background-color: var(--bg-pure);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--wellness-green-soft) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.benefit:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--wellness-green-light);
}

.benefit:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.benefit h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.visit-tagline {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--wellness-green);
    font-family: 'Lora', serif;
    font-style: italic;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

/* Pricing */
.pricing {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    background-color: var(--bg-pure);
}

.pricing h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.price {
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--primary);
    margin: var(--spacing-lg) 0;
    font-family: 'Lora', serif;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-note {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
    font-style: italic;
    font-family: 'Lora', serif;
}

/* Areas */
.areas {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--border-light);
}

.areas h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    font-weight: 500;
}

.areas-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.areas-list li {
    background-color: var(--bg-pure);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid var(--border-soft);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.areas-list li:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg-pure) 100%);
}

.areas-note {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Lora', serif;
}

/* Contact */
.contact {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .container p,
.contact .container h1,
.contact .container h2,
.contact .container h3,
.contact .container h4,
.contact .container h5,
.contact .container h6 {
    color: var(--white) !important;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-weight: 500;
}

.contact-intro {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--white) !important;
    opacity: 0.95;
    font-family: 'Lora', serif;
    font-style: italic;
}

.phone-link {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-md);
}

.phone-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-note {
    font-size: 1.1rem;
    margin: var(--spacing-xl) 0;
    color: var(--white) !important;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.email-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mission */
.mission {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-cream) 100%);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.mission h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-weight: 500;
}

.mission p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text);
    line-height: 1.9;
    font-family: 'Lora', serif;
    font-style: italic;
}

/* Polaroid Gallery */
.polaroid-gallery {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    border-top: 1px solid var(--border-light);
}

.polaroid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.polaroid {
    background-color: var(--white);
    padding: 20px 20px 60px 20px;
    box-shadow: var(--shadow-md);
    transform: rotate(-2deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border-radius: 2px;
    position: relative;
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.polaroid-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-image {
        justify-content: center;
        order: -1;
    }
    
    .hero-practitioner {
        max-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-2xl: 4rem;
        --spacing-3xl: 5rem;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .intro {
        font-size: 1.05rem;
    }
    
    .slogan {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    nav ul {
        gap: 1.75rem;
        margin-top: var(--spacing-sm);
    }
    
    .trust-badges,
    .visit-benefits {
        grid-template-columns: 1fr;
    }
    
    .services h2,
    .home-visits h2,
    .pricing h2,
    .areas h2,
    .contact h2,
    .mission h2 {
        font-size: 2.25rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .phone-link {
        font-size: 2rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .header-practitioner {
        max-height: 55px;
    }
    
    .polaroid-container {
        gap: var(--spacing-xl);
    }
    
    .polaroid {
        padding: 15px 15px 50px 15px;
    }
    
    .polaroid-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .slogan {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    
    .services h2,
    .home-visits h2,
    .pricing h2,
    .areas h2,
    .contact h2,
    .mission h2 {
        font-size: 1.9rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .phone-link {
        font-size: 1.75rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .header-practitioner {
        max-height: 50px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .polaroid-container {
        gap: var(--spacing-lg);
    }
    
    .polaroid {
        padding: 12px 12px 40px 12px;
        transform: rotate(-1deg);
    }
    
    .polaroid:nth-child(even) {
        transform: rotate(1deg);
    }
    
    .polaroid-image {
        max-width: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    header {
        position: static;
    }
    
    nav {
        display: none;
    }
    
    .contact {
        background: var(--white);
        color: var(--text);
    }
    
    .phone-link,
    .email-link {
        color: var(--primary);
        background: transparent;
        border: 1px solid var(--primary);
    }
}
