:root {
    /* Color Palette - Deeper, more sophisticated therapy aesthetic */
    --primary:       hsl(215, 25%, 25%);   /* Deep ink blue */
    --primary-mid:   hsl(215, 20%, 40%);
    --accent:        hsl(155, 25%, 45%);   /* Muted sage green */
    --accent-light:  hsl(155, 30%, 95%);
    --warm:          hsl(30, 40%, 96%);    /* Soft parchment bg */
    --warm-mid:      hsl(30, 25%, 90%);
    --gold:          hsl(42, 55%, 60%);    /* Subtle gold for price accents */
    --text-main:     hsl(215, 15%, 18%);
    --text-muted:    hsl(215, 10%, 48%);
    --white:         #ffffff;
    --shadow-soft:   0 2px 12px hsla(215, 25%, 25%, 0.07);
    --shadow-mid:    0 8px 32px hsla(215, 25%, 25%, 0.12);
    --shadow-strong: 0 20px 60px hsla(215, 25%, 25%, 0.18);

    --font-heading: 'Cormorant Garamond', serif;
    --font-sub:     'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    --section-padding: 120px 5%;
    --section-padding-sm: 80px 5%;
    --container-width: 1200px;
    --border-radius: 16px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--warm);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Typography Upgrade */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h1 { font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-label {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    color: var(--text-muted);
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

section {
    padding: var(--section-padding);
}

.bg-warm  { background: var(--warm); }
.bg-white { background: var(--white); }
.bg-dark  { background: var(--primary); color: white; }
.bg-dark p, .bg-dark .section-label { color: rgba(255,255,255,0.75); }
.bg-dark h2 { color: white; }

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.lang-switch {
    display: flex;
    gap: 15px;
    font-family: var(--font-sub);
    font-size: 0.85rem;
}

.lang-switch a {
    padding: 6px 12px;
    border-radius: 4px;
    background: var(--warm-mid);
}

.lang-switch a.active {
    background: var(--accent);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--warm);
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--primary-mid);
    margin-bottom: 2.5rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.badge {
    background: white;
    border: 1px solid var(--warm-mid);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-soft);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-mid);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
    padding: 16px 43px;
}

/* Service Grids */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-mid);
    display: block;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 2px solid var(--accent-light);
    border-radius: var(--border-radius);
    z-index: -1;
}

.service-label-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.82rem;
    font-family: var(--font-sub);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.topic-list {
    list-style: none;
    margin-bottom: 2rem;
}

.topic-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-main);
}

.topic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: var(--accent);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: white;
    padding: 50px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 45px 35px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent-light);
    position: absolute;
    top: 5px;
    left: 25px;
    line-height: 1;
}

.quote-text {
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 1.5rem;
}

.star-row {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

/* Fee Cards */
.fee-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.fee-card {
    background: white;
    padding: 60px 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-mid);
    width: 400px;
    text-align: center;
    transition: var(--transition);
}

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

.fee-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.05rem; /* Same as body text */
    font-weight: 700;    /* But bold */
    color: var(--primary);
    margin: 10px 0 5px;
    display: inline-block;
}

.fee-card .desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.fee-note {
    max-width: 600px;
    margin: 60px auto 0;
    font-size: 0.85rem;
}

/* Credentials */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2.5rem;
}

.credential-chip {
    background: var(--accent-light);
    color: var(--accent);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Maps */
.map-embed {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-mid);
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 100px 5% 50px;
}

/* Reveal Animations */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 992px) {
    .service-grid, .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .nav-links { display: none; }
    .fee-cards { flex-direction: column; align-items: center; }
    .process-steps, .testimonial-grid { grid-template-columns: 1fr; }
}
