@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Sora:wght@400;500;600&family=Caveat:wght@600&display=swap');

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

:root {
    --ink: #1e1c3b;
    --charcoal: #2f2b53;
    --peach: #ffd7ba;
    --peach-dark: #f28a5e;
    --lavender: #e3dbff;
    --mint: #c8f6de;
    --aqua: #c9ebff;
    --sunny: #ffe066;
    --cream: #fff8f0;
    --sand: #f4eee2;
    --white: #ffffff;
    --text: #1c1a33;
    --pink: #ffcbcb;
    --cyan: #a8d1d1;
}

body {
    font-family: 'Space Grotesk', 'Sora', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: radial-gradient(circle at 20% 20%, #fff2e5 0%, #fefefe 45%, #e7f6ff 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23d5d5d5' fill-opacity='.25'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3Ccircle cx='80' cy='120' r='1'/%3E%3Ccircle cx='120' cy='80' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.floating-sticker {
    position: fixed;
    top: 120px;
    right: 40px;
    width: 140px;
    height: 140px;
    background: var(--mint);
    border: 3px solid var(--white);
    border-radius: 30% 70% 60% 40% / 40% 50% 50% 60%;
    box-shadow: 0 20px 45px rgba(31, 28, 59, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-6deg);
    gap: 0.25rem;
    font-family: 'Caveat', cursive;
    color: var(--ink);
    font-size: 1.2rem;
    z-index: 10;
}

.floating-sticker img {
    width: 80%;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.15));
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 20;
    transition: background 0.3s ease;
}

.navbar.glassy {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

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

.logo {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--ink);
}

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

.page-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    padding: 130px 24px 64px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.hero-canva {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 40px;
    background: var(--cream);
    border-radius: 36px;
    border: 2px dashed rgba(30, 28, 59, 0.1);
    box-shadow: 0 30px 80px rgba(31, 28, 59, 0.12);
    position: relative;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--ink);
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(28, 26, 51, 0.85);
    margin-bottom: 1rem;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(28, 26, 51, 0.55);
    margin-bottom: 0.75rem;
}

.cta-panel .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.cta-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(31, 28, 59, 0.15);
}

.cta-button {
    background: linear-gradient(135deg, var(--charcoal), var(--ink));
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-2px);
}

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

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.badge-row span {
    background: var(--white);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border: 1px solid rgba(31, 28, 59, 0.1);
}

.hero-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    border: 2px solid rgba(31, 28, 59, 0.08);
    box-shadow: 0 20px 40px rgba(31, 28, 59, 0.08);
    position: relative;
    flex: 0 1 auto;
}

.hero-card.primary {
    background: var(--lavender);
}

.hero-card.stat {
    background: var(--mint);
}

.hero-card.sticker {
    background: var(--pink);
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
}

.hero-card .card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.9rem;
    display: inline-block;
}

.hero-card ul,
.hero-card ol {
    list-style: disc;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.hero-card ol {
    counter-reset: steps;
}

.hero-card ol li {
    position: relative;
    padding-left: 1.8rem;
    counter-increment: steps;
}

.hero-card ol li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: rgba(31, 28, 59, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.hero-card blockquote {
    font-size: 1.3rem;
    margin-top: 0.6rem;
}

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

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--ink);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.mosaic-card {
    background: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
    border: 2px solid rgba(31, 28, 59, 0.06);
    box-shadow: 0 18px 35px rgba(31, 28, 59, 0.08);
    min-height: 220px;
}

.mosaic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.mosaic-card.highlight {
    background: var(--aqua);
}

.session-bento {
    background: var(--cyan);
    padding: 2.5rem;
    border-radius: 40px;
    border: 2px dashed rgba(31, 28, 59, 0.1);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.bento-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.6rem;
    border: 1px solid rgba(31, 28, 59, 0.08);
    box-shadow: 0 15px 30px rgba(31, 28, 59, 0.08);
}

.bento-card span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(28, 26, 51, 0.6);
}

.bento-card h3 {
    margin: 0.8rem 0;
    font-size: 1.4rem;
}

.bento-card.tall {
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.journal-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.story-card {
    padding: 2rem;
    border-radius: 30px;
    border: 2px solid rgba(31, 28, 59, 0.08);
    background: var(--mint);
    box-shadow: 0 20px 40px rgba(214, 131, 222, 0.116);
}

.story-card.peach {
    background: var(--peach);
}

.story-card h2 {
    margin-bottom: 1rem;
}

.story-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.story-card ul li {
    position: relative;
    padding-left: 1.4rem;
}

.story-card ul li::before {
    content: '✸';
    position: absolute;
    left: 0;
    color: var(--charcoal);
}

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

.support-card {
    padding: 2rem;
    border-radius: 28px;
    border: 2px dashed rgba(31, 28, 59, 0.15);
    background: var(--white);
}

.support-card.lavender {
    background: var(--lavender);
}

.chip-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.chip-list li {
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    background: rgba(31, 28, 59, 0.07);
    font-size: 0.95rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.3rem;
}

.tag-cloud span {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 28, 59, 0.25);
}

.cta-panel {
    background: linear-gradient(120deg, var(--charcoal), #473a8f);
    color: var(--white);
    padding: 2.8rem;
    border-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.cta-panel .cta-button {
    background: var(--sunny);
    color: var(--ink);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.about-page .hero-canva {
    background: var(--pink);
    align-items: center;
}

.therapist-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapist-photo img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 30% 70% 60% 40% / 40% 50% 50% 60%;
    border: 5px solid var(--white);
    box-shadow:
        0 24px 60px rgba(31, 28, 59, 0.22),
        0 0 0 8px rgba(227, 219, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.therapist-photo img:hover {
    transform: scale(1.04) rotate(1deg);
    box-shadow:
        0 30px 70px rgba(31, 28, 59, 0.28),
        0 0 0 10px rgba(227, 219, 255, 0.6);
}

@media (max-width: 768px) {
    .therapist-photo img {
        width: 240px;
        height: 240px;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.story-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    border: 2px solid rgba(31, 28, 59, 0.08);
    box-shadow: 0 18px 35px rgba(31, 28, 59, 0.08);
}

.story-block.focus {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.focus-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(31, 28, 59, 0.08);
}

.focus-card span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.ethos-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ethos-panels article {
    background: var(--white);
    padding: 2rem;
    border-radius: 28px;
    border: 2px dashed rgba(31, 28, 59, 0.1);
}

.mini-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mini-list li {
    padding-left: 1.4rem;
    position: relative;
}

.mini-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--peach-dark);
}

.approach-lattice {
    background: var(--sand);
    border-radius: 36px;
    padding: 2.5rem;
    border: 2px solid rgba(31, 28, 59, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-grid-wrapper {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 36px;
    border: 2px dashed rgba(31, 28, 59, 0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
    border: 2px solid rgba(31, 28, 59, 0.08);
    box-shadow: 0 18px 40px rgba(31, 28, 59, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-card span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(31, 28, 59, 0.6);
}

.contact-card.peach {
    background: var(--peach);
}

.contact-card.mint {
    background: var(--mint);
}

.contact-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: rgba(28, 26, 51, 0.7);
}

/* ---- Testimonials ---- */
.testimonials-page .hero-canva {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card,
.testimonial-img-card {
    border-radius: 28px;
    padding: 2rem;
    border: 2px solid rgba(31, 28, 59, 0.08);
    box-shadow: 0 18px 40px rgba(31, 28, 59, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    background: var(--white);
}

.testimonial-card.lavender { background: var(--lavender); }
.testimonial-card.mint      { background: var(--mint); }
.testimonial-card.peach      { background: var(--peach); }
.testimonial-card.aqua       { background: var(--aqua); }
.testimonial-card.cyan       { background: var(--cyan); }
.testimonial-card.pink       { background: var(--pink); }

.testimonial-card blockquote {
    font-family: 'Caveat';
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--ink);
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(28, 26, 51, 0.6);
}

.testimonial-img-card {
    background: var(--white);
    padding: 1rem;
}

.testimonial-img-card img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.img-caption {
    font-size: 0.9rem;
    color: rgba(28, 26, 51, 0.6);
    text-align: center;
}

.img-placeholder {
    background: var(--sand);
    border: 2px dashed rgba(31, 28, 59, 0.15);
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: rgba(28, 26, 51, 0.4);
}

.footer {
    padding: 3rem 1rem 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(120deg, var(--ink), #4a3faa);
    margin-top: 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-brand .footer-name {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

.footer-brand p {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-brand a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 1.5rem 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.55;
}

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

    .floating-sticker {
        display: none;
    }

    .navbar .container,
    .page-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-canva {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        padding: 1.5rem;
        border-radius: 20px 0 0 20px;
        width: 70%;
        gap: 1rem;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .page-wrapper {
        padding-top: 110px;
    }

    .hero-canva,
    .session-bento,
    .contact-grid-wrapper,
    .approach-lattice {
        padding: 1.5rem;
    }

    .bento-card.wide {
        grid-column: span 1;
    }

    .bento-card.tall {
        grid-row: span 1;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        flex-direction: column;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        align-items: flex-start;
    }
}

/* ---- Testimonial excerpt (home page) ---- */
.testimonial-excerpt {
    background: var(--lavender);
    border-radius: 36px;
    padding: 2.5rem;
    border: 2px dashed rgba(31, 28, 59, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-excerpt blockquote {
    font-family: 'Caveat', cursive;
    font-size: 1.55rem;
    line-height: 1.5;
    color: var(--ink);
    max-width: 680px;
}

.testimonial-excerpt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-excerpt cite {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(28, 26, 51, 0.6);
}

/* ---- FAQ accordion (contact page) ---- */
.faq-section {
    background: var(--sand);
    border-radius: 36px;
    padding: 2.5rem;
    border: 2px dashed rgba(31, 28, 59, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-section .section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-section .section-heading h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--ink);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

details.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(31, 28, 59, 0.08);
    overflow: hidden;
}

details.faq-item summary {
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--charcoal);
    flex-shrink: 0;
    line-height: 1;
}

details.faq-item[open] summary::after {
    content: '−';
}

.faq-body {
    padding: 0 1.5rem 1.2rem;
    color: rgba(28, 26, 51, 0.82);
    font-size: 0.97rem;
    line-height: 1.7;
}
