/* Self-hosted fonts — eliminates Google Fonts round-trip, improves LCP */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lora-italic-w400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/lora-italic-w400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/lora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --beige-light: #EDE7DF;
    --beige: #D4C4B0;
    --beige-dark: #B8A89A;
    --brown-light: #A08F7F;
    --brown: #7A6B5D;
    --brown-dark: #4E3F33;
    --warm-white: #FDFAF7;
    --cream: #F5F0EA;
    --sage: #8B9A7E;
    --sage-dark: #6B7A5E;
    --terracotta: #C9A380;
    --text-primary: #2E2520;
    --text-secondary: #6B5F57;
    --border: rgba(120, 100, 80, 0.15);
    --shadow-sm: 0 2px 8px rgba(78, 63, 51, 0.07);
    --shadow: 0 4px 20px rgba(78, 63, 51, 0.1);
    --shadow-lg: 0 12px 40px rgba(78, 63, 51, 0.14);
    --success: #8B9A7E;
    --warning: #E8B86D;
    --error: #C89B9B;
    --radius: 10px;
    --radius-sm: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--warm-white);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    color: var(--brown-dark);
    font-weight: 400;
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); margin-bottom: 0.85rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); font-size: 1rem; }
a { color: var(--brown); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--brown-dark); }
strong { color: var(--text-primary); font-weight: 600; }

/* ── HEADER ── */
.header {
    background: rgba(253, 250, 247, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.1rem 0;
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.logo h1, .logo span {
    font-size: 1.2rem;
    margin: 0;
    color: var(--brown-dark);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.nav { display: flex; gap: 1.25rem; align-items: center; }

.nav a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.1px;
    position: relative;
    transition: color 0.25s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brown);
    transition: width 0.25s;
}

.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--brown-dark); }

.cta-button {
    background: var(--brown-dark) !important;
    color: white !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem !important;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.25s !important;
    box-shadow: 0 2px 10px rgba(78, 63, 51, 0.25);
}

.cta-button::after { display: none !important; }
.cta-button:hover {
    background: var(--brown) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(78, 63, 51, 0.3) !important;
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brown);
    cursor: pointer;
    padding: 0.3rem;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, var(--cream) 0%, #EBE4DA 50%, var(--beige-light) 100%);
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212,196,176,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(139,154,126,0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    color: var(--brown-dark);
    margin-bottom: 1.4rem;
    line-height: 1.2;
    font-style: italic;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* ── HERO BADGES (certification logos) ── */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.25s;
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.badge:hover { opacity: 1; transform: none; }

.badge img {
    max-height: 52px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: none;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--brown-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.btn:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78,63,51,0.25); color: white; }

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

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--brown);
    color: var(--brown);
    box-shadow: none;
}

.btn-outline:hover { background: var(--brown-dark); color: white; border-color: var(--brown-dark); }

/* ── CARDS ── */
.card {
    background: white;
    padding: 2.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.card h3 { color: var(--brown-dark); margin-bottom: 0.75rem; font-size: 1.3rem; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* ── SERVICE ITEMS ── */
.service-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-item:hover { box-shadow: var(--shadow); }

.service-header {
    padding: 1.75rem 2rem;
    background: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}

.service-header h3 { margin: 0; font-size: 1.3rem; color: var(--brown-dark); }
.service-toggle { font-size: 1.2rem; color: var(--brown); transition: transform 0.3s; }
.service-item.active .service-toggle { transform: rotate(180deg); }

.service-content { padding: 1.75rem 2rem; display: none; animation: slideDown 0.3s; }
.service-item.active .service-content { display: block; }

.service-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.meta-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.95rem; }
.meta-item strong { color: var(--brown-dark); }

/* ── FOOTER ── */
.footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 { color: white; margin-bottom: 1.25rem; font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.7rem; }
.footer-section a { color: rgba(255,255,255,0.65); font-size: 0.95rem; transition: color 0.2s; }
.footer-section a:hover { color: white; }
.footer-section p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
}

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background: white;
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(122,107,93,0.08);
}

textarea { resize: vertical; min-height: 110px; }

/* ── ABOUT ── */
.about-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.therapist-photo {
    width: 260px;
    height: 300px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-content ul { list-style: none; margin-top: 1.25rem; }

.about-content li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.about-content li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 600; }

/* ── CONTACT ── */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-card {
    background: white;
    padding: 2.2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

/* ── FAQ ── */
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.75rem;
    background: var(--cream);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
}

.faq-question:hover { background: var(--beige-light); }
.faq-question h3 { margin: 0; font-size: 1.05rem; font-family: 'DM Sans', sans-serif; font-weight: 500; color: var(--brown-dark); }
.faq-toggle { font-size: 1rem; color: var(--brown); transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }

.faq-answer { padding: 0 1.75rem; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-item.active .faq-answer { padding: 1.25rem 1.75rem; max-height: 500px; }

/* ── ANIMATIONS ── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease-out; }

/* ── HERO WITH PHOTO ── */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-layout .hero-content {
    flex: 1;
    text-align: left;
    max-width: none;
    margin: 0;
}

.hero-layout .hero-content p {
    margin-left: 0;
    margin-right: 0;
}

.hero-layout .hero-badges {
    justify-content: flex-start;
}

.hero-photo img {
    width: 280px;
    height: 340px;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: top center;
    box-shadow: var(--shadow);
    display: block;
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 1.25rem 1.5rem 1.75rem;
        box-shadow: var(--shadow);
        gap: 0;
        border-top: 1px solid var(--border);
        z-index: 999;
    }

    .nav.active { display: flex; }
    .mobile-menu-toggle { display: block; }

    /* Full-width touch-friendly nav links in dropdown */
    .nav a {
        padding: 0.85rem 0.5rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .nav a:last-child { border-bottom: none; }
    .nav a::after { display: none; }

    /* CTA button full width in mobile nav */
    .nav .cta-button {
        margin-top: 0.75rem;
        text-align: center;
        border-radius: var(--radius-sm);
        padding: 0.9rem 1.5rem !important;
        display: block;
    }

    .about-container { grid-template-columns: 1fr; text-align: center; }
    .therapist-photo { margin: 0 auto; width: 200px; height: 220px; }

    .hero-layout { flex-direction: column-reverse; gap: 2rem; }
    .hero-layout .hero-content { text-align: center; }
    .hero-layout .hero-badges { justify-content: center; }
    .hero-layout .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-photo img { width: 180px; height: 220px; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.1rem; }
    .section { padding: 2.75rem 0; }
    .hero { padding: 3.5rem 0 2.75rem; }
    .card-grid { grid-template-columns: 1fr; }
    .hero-badges { gap: 1.25rem; }
    .badge img { max-height: 36px; }

    /* Typography */
    h1 { margin-bottom: 1rem; }
    h2 { margin-bottom: 0.85rem; }

    /* Buttons: larger tap target */
    .btn { padding: 1rem 2rem; font-size: 1rem; width: 100%; text-align: center; display: block; }
    .btn + .btn { margin-top: 0.75rem; }

    /* Footer */
    .footer { padding: 2.5rem 0 1.5rem; margin-top: 3rem; }
    .footer-content { gap: 2rem; padding: 0 1.1rem; }

    /* Forms */
    input, select, textarea { font-size: 1rem; padding: 0.9rem 1rem; }

    /* FAQ */
    .faq-question { padding: 1rem 1.1rem; }
    .faq-question h3 { font-size: 0.95rem; line-height: 1.4; }
    .faq-item.active .faq-answer { padding: 1rem 1.1rem; }

    /* Highlight box */
    .highlight-box { padding: 2rem 1.5rem; }

    /* Section label */
    .section-label { font-size: 0.72rem; }
}

@media (max-width: 400px) {
    .container { padding: 0 0.9rem; }
    .logo span { font-size: 1rem; }
    .hero-photo img { width: 150px; height: 180px; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ── SECTION LABEL ── */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

/* ── DIVIDER ── */
.divider {
    width: 48px;
    height: 2px;
    background: var(--terracotta);
    margin: 1rem auto 2rem;
    border: none;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige-light) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
}
