@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #fcf9f1;
    -webkit-font-smoothing: antialiased;
}



/* CSS Variables for Consistent Theming */
:root {
    --primary-color: #454851;
    --primary-dark: #2f3239;
    --secondary-color: #b4a6ab;
    --secondary-dark: #9d8d92;
    --accent-color: #cdd5d1;
    --accent-muted: #e4ebe6;
    --text-primary: #454851;
    --text-secondary: #5e626a;
    --text-light: #7f838a;
    --background-light: #fcf9f1;
    --background-white: #fcf9f1;
    --surface-color: #ffffff;
    --surface-muted: #f5f0e7;
    --border-light: #e6dfd4;
    --border-medium: #ccc3b8;
    --success-color: #698a76;
    --error-color: #b27c7c;
    --shadow-sm: 0 8px 16px rgba(69, 72, 81, 0.04);
    --shadow-md: 0 16px 32px rgba(69, 72, 81, 0.08);
    --shadow-lg: 0 26px 48px rgba(69, 72, 81, 0.1);
    --shadow-xl: 0 36px 60px rgba(69, 72, 81, 0.12);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --section-spacing: clamp(3.5rem, 6vw, 5.5rem);
    --section-spacing-tight: clamp(2.5rem, 5vw, 4rem);
}





/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1rem;
}



h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    opacity: 0.9;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-logo p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-white);
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Sections */
.hero {
    position: relative;
    color: white;
    padding: 6rem 0;
    text-align: center;
    overflow: clip;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-media picture,
.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: right center;
}

.hero-media::after { content: none; }

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 3px 12px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.45);
}

.hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 1rem; /* Reduced since CTAs removed */
    color: white;
    /* Heavier shadow for strong readability over bright areas */
    text-shadow:
        0 4px 18px rgba(0,0,0,0.78),
        0 0 2px rgba(0,0,0,0.88),
        0 1px 3px rgba(0,0,0,0.7);
}

/* Responsive line-break helper: show only on mobile */
br.br-mobile { display: none; }
@media (max-width: 768px) {
    br.br-mobile { display: initial; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero content remains clean; shadows on text handle readability */

/* Page Hero */
.page-hero {
    background: var(--background-light);
    padding: 4rem 0;
    text-align: center;
}
.page-hero.page-hero--compact {
    padding-bottom: clamp(1rem, 3vw, 1.75rem);
}


.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-shadow: none;
}
.page-hero .hero-subtitle--compact {
    margin-bottom: 0.4rem;
}


/* Services */
.services-preview {
    padding: 6rem 0;
    background: var(--background-white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    /* Switched from grid to flex to control visual order */
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid .service-card { flex: 1 1 300px; }

/* Reorder cards visually: Intensives, Hold Me Tight, Supervision */
.services-grid .service-card:nth-child(1) { order: 3; }
.services-grid .service-card:nth-child(2) { order: 1; }
.services-grid .service-card:nth-child(3) { order: 2; }

.service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-light);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-icon.large {
    font-size: 4rem;
}

.service-section .info-card,
.service-section .comparison-card,
.service-comparison .comparison-card,
.contact-details .contact-method,
.location-info .location-card {
    transition: none;
    cursor: default;
}

.service-section .info-card:hover,
.service-section .comparison-card:hover,
.service-comparison .comparison-card:hover,
.contact-details .contact-method:hover,
.location-info .location-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.service-card-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 6px;
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-link::after {
    content: '\2192';
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-link,
.service-card-link:focus-visible .service-link {
    color: var(--primary-dark);
}

.service-card-link:hover .service-link::after,
.service-card-link:focus-visible .service-link::after {
    transform: translateX(4px);
}

/* About Section */
.about-preview {
    padding: 6rem 0;
    background: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.placeholder-image {
    background: var(--border-medium);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: var(--text-light);
    font-weight: 500;
}

.placeholder-image.large {
    height: 400px;
}

/* Real portrait image styles */
.about-image picture, .about-image img {
    display: block;
    width: 100%;
}

.about-image img {
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Location Info */
.location-info {
    padding: 6rem 0;
    background: var(--background-white);
}

.location-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.location-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Call to Action */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

/* Forms */
.contact-form {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.contact-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-content p {
    margin-bottom: 0.5rem;
}

.contact-content a {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-color);
    text-decoration: none;
}

.contact-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.contact-guidelines {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.contact-guidelines h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-guidelines ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.contact-guidelines li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.response-info {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.response-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services Page Specific */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Hide supervision service section per updated offerings */
#supervision { display: none; }

.service-nav-link {
    padding: 0.75rem 1.5rem;
    background: var(--background-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-nav-link:hover {
    background: var(--primary-color);
    color: white;
}

.service-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-light);
}

.service-section:last-of-type {
    border-bottom: none;
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-title h2 {
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--text-light);
    font-size: 1.125rem;
    margin: 0;
}

.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-description ul,
.service-description ol {
    margin: 1rem 0 1rem 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.info-card {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    margin: 0;
}

.info-card li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
}

/* About Page Specific */
.about-main {
    padding: clamp(1.25rem, 3vw, 2rem) 0 var(--section-spacing) 0;
}

.services-overview,
.blog-posts,
.contact-main {
    padding: clamp(1rem, 3vw, 1.75rem) 0 var(--section-spacing) 0;
}


/* Normalize spacing for About section headings */
.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.about-image-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credentials {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.credentials h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
    margin: 0;
}

.credentials li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

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

.philosophy {
    padding: 4rem 0;
    background: var(--background-light);
    text-align: center;
}

.philosophy blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.philosophy blockquote::before {
    content: none; /* remove decorative quote mark */
}

.eft-info {
    padding: 4rem 0;
}

.eft-info h2 {
    text-align: center;
}

.eft-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
}

.eft-intro p { margin: 0.75rem 0 0; }

.eft-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* shift balance slightly right */
    gap: 3.5rem; /* slightly increase spacing between columns */
    margin-top: 2rem;
}

/* Nudge process column slightly right on larger screens */
@media (min-width: 992px) {
    .eft-content { padding-left: 1rem; }
    .eft-benefits { padding-right: 1rem; }
}

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

/* Blog Page Specific */
.blog-intro {
    padding: 3rem 0;
    text-align: center;
}

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

.blog-posts {
    padding: clamp(1rem, 3vw, 1.75rem) 0 var(--section-spacing) 0;
}

.blog-grid {
    display: grid;
    gap: 2rem;
}

.blog-post {
    padding: 0;
}

.blog-post-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface-color);
    border: 1px solid rgba(69, 72, 81, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: clamp(1.75rem, 4vw, 2.4rem);
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: clamp(1.5rem, 3vw, 1.9rem);
}

.blog-post-link:hover,
.blog-post-link:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-post-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 6px;
}

.blog-post.featured .blog-post-link {
    background: linear-gradient(135deg, rgba(205, 213, 209, 0.45) 0%, rgba(180, 166, 171, 0.35) 100%);
    border: 1px solid rgba(180, 166, 171, 0.4);
    padding: clamp(2.25rem, 5vw, 3rem);
}

.post-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.post-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.read-more {
    align-self: flex-start;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.read-more::after {
    content: '\2192';
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.blog-post-link:hover .read-more,
.blog-post-link:focus-visible .read-more {
    color: var(--primary-dark);
}

.blog-post-link:hover .read-more::after,
.blog-post-link:focus-visible .read-more::after {
    transform: translateX(4px);
}

.blog-categories {
    padding: 3rem 0;
    background: var(--background-light);
}

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

.category-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.category-posts {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.newsletter-signup {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter-signup h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group.inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group.inline input {
    flex: 1;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* FAQ */
.faq {
    padding: 4rem 0;
}

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

.faq-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Steps */
.next-steps {
    padding: 4rem 0;
    background: var(--background-light);
}

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

.step {
    text-align: center;
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Service Comparison */
.service-comparison {
    padding: 4rem 0;
    background: var(--background-light);
}

.service-comparison h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.comparison-card {
    background: var(--background-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.comparison-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.service-section {
    padding: var(--section-spacing) 0;
    border-bottom: 1px solid rgba(69, 72, 81, 0.08);
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-section.alt-bg {
    background: var(--surface-muted);
}

.service-nav-link {
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(69, 72, 81, 0.12);
    background: transparent;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.service-nav-link:hover,
.service-nav-link:focus,
.service-nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-light);
}

.tag {
    background: rgba(205, 213, 209, 0.28);
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
}

.contact-form {
    background: var(--surface-color);
    border-radius: 32px;
    padding: clamp(2.25rem, 6vw, 3.5rem);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(69, 72, 81, 0.08);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(69, 72, 81, 0.14);
    border-radius: 18px;
    background: var(--surface-color);
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(69, 72, 81, 0.08);
}

.form-message.success {
    background: rgba(105, 138, 118, 0.12);
    border-color: rgba(105, 138, 118, 0.4);
}

.form-message.error {
    background: rgba(178, 124, 124, 0.12);
    border-color: rgba(178, 124, 124, 0.4);
}


.service-icon.large {
    width: 4.5rem;
    height: 4.5rem;
}

.service-icon.large svg {
    width: 2.1rem;
    height: 2.1rem;
}

.contact-method {
    background: var(--surface-color);
    border-radius: 28px;
    border: 1px solid rgba(69, 72, 81, 0.08);
    box-shadow: var(--shadow-sm);
    gap: 1.75rem;
    padding: clamp(2rem, 5vw, 2.75rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(69, 72, 81, 0.08);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.6rem;
    height: 1.6rem;
    color: var(--primary-color);
}


.blog-intro,
.blog-posts {
    padding: clamp(1rem, 3vw, 1.75rem) 0 var(--section-spacing) 0;
}

.blog-categories {
    border-top: 1px solid rgba(69, 72, 81, 0.08);
    border-bottom: 1px solid rgba(69, 72, 81, 0.08);
}


.site-bottom-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: clamp(2.25rem, 6vw, 3.25rem) clamp(1.5rem, 5vw, 2.5rem) clamp(2.75rem, 6vw, 3.75rem);
    border-top: 1px solid rgba(69, 72, 81, 0.08);
}

footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .locations-grid,
    .categories-grid,
    .faq-grid,
    .steps-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.inline {
        flex-direction: column;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Blog Post Full Page Styles */
.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    background: var(--background-white);
}

.post-header-full {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.post-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-breadcrumb a:hover {
    color: var(--primary-dark);
}

.post-header-full h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 1rem 0;
    color: var(--text-primary);
}

.post-meta-full {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-author {
    font-weight: 600;
    color: var(--text-secondary);
}

.post-content {
    line-height: 1.8;
    font-size: 1.125rem;
    background: var(--background-white);
    padding: 1rem 0;
}

.post-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--background-light);
    padding-bottom: 0.5rem;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.post-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    position: relative;
}

.post-content ul, 
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.post-conclusion {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.post-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
    background: var(--background-white);
}

.author-bio {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.author-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.author-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.related-content {
    margin-bottom: 3rem;
    background: var(--background-white);
    padding: 1rem 0;
}

.related-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.related-posts {
    display: grid;
    gap: 1.5rem;
}

.related-post {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.related-post h4 {
    margin-bottom: 0.5rem;
}

.related-post h4 a {
    color: var(--text-primary);
    text-decoration: none;
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.related-post p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .blog-post-full {
        padding: 1rem;
    }
    
    .post-header-full h1 {
        font-size: 1.875rem;
    }
    
    .post-meta-full {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-intro {
        font-size: 1.125rem;
        padding: 1rem;
    }
    
    .post-content blockquote {
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .author-links {
        flex-direction: column;
    }
    
    .post-navigation {
        flex-direction: column;
        text-align: center;
    }
}



/* Spa-inspired redesign overrides */
section:not(.hero) {
    padding: var(--section-spacing) 0;
}

.container {
    max-width: 1120px;
    padding: 0 clamp(1.75rem, 5vw, 3.5rem);
}

.navbar {
    background: rgba(252, 249, 241, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(69, 72, 81, 0.08);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    padding: 1.25rem clamp(1.5rem, 5vw, 3rem);
}

.nav-logo h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.nav-logo p {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.nav-menu {
    gap: clamp(1.25rem, 3vw, 2.5rem);
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    color: var(--text-primary);
    text-align: center;
    padding: clamp(7rem, 14vw, 9rem) 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 249, 241, 0.92), rgba(252, 249, 241, 0.55));
    z-index: 0;
}

.hero-container,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: min(620px, 90vw);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 2.5rem);
}

.hero h2 {
    font-weight: 600;
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    letter-spacing: 0.015em;
    color: var(--text-primary);
    text-shadow: none;
    margin-bottom: 1rem;
}

.hero .hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    line-height: 1.6;
    color: var(--text-secondary);
    text-shadow: none;
    background: rgba(255, 255, 255, 0.65);
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 900px) {
    .hero {
        text-align: center;
    }
    .hero-container {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }
    .hero {
        padding: clamp(5rem, 18vw, 6rem) 0;
    }
    .hero-container {
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    .hero .hero-subtitle {
        padding: 0.65rem 1.25rem;
    }
}


.page-hero {
    background: transparent;
    padding: var(--section-spacing-tight) 0;
    text-align: center;
}
.page-hero.page-hero--compact {
    padding-bottom: clamp(1rem, 3vw, 1.75rem);
}


.page-hero .page-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.page-hero .hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}


.services-preview,
.philosophy,
.eft-info,
.location-info,
.service-comparison,
.blog-categories,
.newsletter-signup {
    background: transparent;
    padding: var(--section-spacing) 0;
}

.services-preview h2,
.location-info h2,
.service-comparison h2,
.blog-categories h2 {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    text-align: center;
}

.services-grid {
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-card,
.location-card,
.info-card,
.category-card,
.comparison-card {
    background: var(--surface-color);
    border-radius: 24px;
    border: 1px solid rgba(69, 72, 81, 0.08);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.75rem, 4vw, 2.5rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.location-card:hover,
.info-card:hover,
.category-card:hover,
.comparison-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: inset 0 0 0 1px rgba(69, 72, 81, 0.08);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-color);
}

.service-card h3,
.info-card h4,
.location-card h3,
.category-card h3,
.comparison-card h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    letter-spacing: 0.02em;
}

.service-link {
    letter-spacing: 0.04em;
    font-weight: 600;
}

.btn {
    padding: 0.85rem 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-light);
}

.newsletter-signup {
    background: var(--surface-color);
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    text-align: left;
    max-width: 860px;
    margin: var(--section-spacing) auto;
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 7vw, 4rem);
}

.newsletter-signup h2 {
    color: var(--text-primary);
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

.newsletter-signup p {
    color: var(--text-secondary);
}

.newsletter-signup form {
    max-width: 540px;
    margin: 2rem 0 0;
}

@media (max-width: 768px) {
    .newsletter-signup {
        text-align: left;
        padding: clamp(2rem, 8vw, 2.75rem);
    }
}

.cta {
    background: linear-gradient(135deg, rgba(69, 72, 81, 0.88), rgba(69, 72, 81, 0.78));
    color: #fefcf8;
    border-radius: 42px;
    margin: var(--section-spacing) auto;
    max-width: 1100px;
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 7vw, 4.5rem);
}

.cta h2,
.cta p {
    color: inherit;
}

.cta .btn-primary {
    background: #fefcf8;
    color: var(--primary-color);
}

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

footer {
    background: transparent;
    padding: var(--section-spacing) 0;
}

.footer-content {
    border-top: 1px solid rgba(69, 72, 81, 0.08);
    border-bottom: 1px solid rgba(69, 72, 81, 0.08);
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
    display: grid;
    gap: clamp(1.5rem, 5vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

/* Print styles */
@media print {
    .navbar,
    .cta,
    .newsletter-signup,
    footer {
        display: none;
    }
    
    * {
        box-shadow: none !important;
    }
    
    a {
        text-decoration: underline;
    }
}
