:root {
    --white: #ffffff;
    --green-30: #3f5a3f;
    --green-10: #2db82d;
    --text: #1f2a1f;
    --muted: #5d6e5d;
    --surface: #f7f7f7;
    --border: #dde6dd;
    --shadow: 0 18px 40px rgba(63, 90, 63, 0.08);
    --radius: 18px;
    --container: 1120px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

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

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

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 1rem;
}

.brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-30);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex: 1 1 auto;
}

.nav-search {
    position: relative;
    width: min(240px, 100%);
    flex: 0 1 240px;
}

.nav-search-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.62rem 0.9rem;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 0.92rem;
    outline: none;
}

.nav-search-input:focus {
    border-color: var(--green-10);
    box-shadow: 0 0 0 3px rgba(45, 184, 45, 0.1);
}

.search-results {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    z-index: 1100;
    max-height: 360px;
    overflow-y: auto;
}

.search-result {
    display: block;
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 0;
    padding: 0.85rem 1rem;
    cursor: pointer;
}

.search-result:hover,
.search-result.active {
    background: var(--surface);
}

.search-result-title {
    display: block;
    color: var(--green-30);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.search-result-snippet {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

.search-result-snippet mark {
    background: rgba(45, 184, 45, 0.18);
    color: inherit;
    padding: 0 0.15rem;
    border-radius: 0.2rem;
}

.search-loading,
.search-empty {
    padding: 0.9rem 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.nav-link {
    color: var(--muted);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-30);
    margin: 5px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    padding: 5rem 1rem;
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
    text-align: left;
    max-width: 610px;
}

.eyebrow {
    color: var(--green-10);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero h1,
.page-banner h1,
.section-header h2,
.content-block h2 {
    color: var(--green-30);
    line-height: 1.15;
}

.hero-text,
.section-text,
.content-block p {
    color: var(--muted);
    max-width: 60ch;
    margin: 0 0 0.9rem;
}

.hero-kicker {
    color: var(--green-10);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.hero-name {
    color: var(--green-30);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.6rem;
}

.hero-qual {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.hero-link {
    margin-top: 1rem;
}

.hero-divider {
    color: var(--green-10);
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    margin: 0.8rem 0;
}

.hero-link a {
    color: var(--green-10);
    font-weight: 700;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    height: 620px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section {
    padding: 4rem 1rem;
}

.section-alt {
    background: linear-gradient(180deg, var(--surface), var(--white));
}

.section-header {
    margin-bottom: 1rem;
}

.section-header h2,
.content-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.page-banner {
    background: linear-gradient(90deg, rgba(63, 90, 63, 0.08), rgba(45, 184, 45, 0.08));
    padding: 4rem 0;
}

.content-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

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

.about-section h2,
.about-section h3 {
    color: var(--green-30);
    margin-bottom: 1rem;
}

.about-section p {
    margin-bottom: 1rem;
}

.about-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.about-image-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-highlights {
    margin-top: 2rem;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.about-highlights li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.about-highlights li::before {
    content: '•';
    color: var(--green-10);
    position: absolute;
    left: 0;
}

.about-note-block {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border-left: 4px solid var(--green-10);
    border-radius: 0.5rem;
}

.about-note-block p {
    color: var(--muted);
    margin: 0;
    max-width: none;
}

.services-layout-wrap {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services-section {
    padding: 1rem 0;
}

.services-section h3 {
    color: var(--green-30);
    margin-bottom: 0.75rem;
}

.services-section p,
.services-section li {
    color: var(--muted);
    margin-bottom: 0.6rem;
    max-width: none;
    width: 100%;
}

.services-section ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.services-section a {
    color: var(--green-10);
    font-weight: 700;
}

.services-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(63, 90, 63, 0.18), transparent);
}

.services-image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
}

.services-image-wrap img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section h2,
.faq-section h3,
.faq-section h4 {
    color: var(--green-30);
}

.faq-section h2 {
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item h3 {
    margin-bottom: 0.35rem;
}

.faq-item p,
.faq-resources li,
.faq-resources p {
    color: var(--muted);
    max-width: none;
    width: 100%;
}

.faq-resources ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 1rem;
}

.faq-resources a {
    color: var(--green-10);
    font-weight: 600;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1.5rem;
    align-items: start;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-panel {
    padding: 1rem 0;
}

.contact-panel h2,
.contact-panel h3 {
    color: var(--green-30);
    margin-bottom: 0.75rem;
}

.contact-panel p,
.contact-panel li {
    color: var(--muted);
    max-width: none;
    width: 100%;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-list a,
.contact-panel a {
    color: var(--green-10);
    font-weight: 600;
}

.crisis-panel {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1rem;
}

.contact-map-panel {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem 0;
}

.contact-map-panel iframe {
    width: 250px;
    height: 300px;
    border-radius: 0.9rem;
    box-shadow: var(--shadow);
}

.crisis-panel ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.crisis-panel li {
    margin-left: 1rem;
    position: relative;
    padding-left: 0.8rem;
}

.crisis-panel li::before {
    content: '•';
    color: var(--green-10);
    position: absolute;
    left: 0;
}

.therapy-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.therapy-intro {
    margin-bottom: 2rem;
}

.therapy-intro p {
    color: var(--muted);
    margin-bottom: 0.9rem;
    max-width: none;
    width: 100%;
}

.therapy-image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
}

.therapy-image-wrap img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.therapy-topics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.therapy-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(63, 90, 63, 0.18), transparent);
    margin: 0 0 1.5rem;
}

.therapy-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    padding: 1rem 0.75rem;
    text-align: center;
    color: var(--green-30);
    font-weight: 600;
    min-height: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.therapy-tile span {
    display: block;
}

.therapy-tile small {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
}

.therapy-process h2 {
    color: var(--green-30);
    margin-bottom: 1rem;
}

.therapy-step {
    margin-bottom: 1.5rem;
}

.therapy-step h3 {
    color: var(--green-30);
    margin-bottom: 0.6rem;
}

.therapy-step p,
.therapy-step li {
    color: var(--muted);
    max-width: none;
    width: 100%;
}

.therapy-step ul {
    padding-left: 1.2rem;
    margin: 0.8rem 0;
}

.site-footer {
    background: var(--green-30);
    color: var(--white);
    padding: 1.5rem 0;
}

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

.footer-content a {
    color: var(--green-10);
    font-weight: 600;
}

body.modal-open {
    overflow: hidden;
}

.booking-modal[hidden] {
    display: none !important;
}

.book-online-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    border: 0;
    border-radius: 999px;
    background: var(--green-10);
    color: var(--white);
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.95rem 1.2rem;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(45, 184, 45, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.book-online-fab:hover,
.book-online-fab:focus-visible {
    transform: translateY(-2px);
    background: #29a329;
    box-shadow: 0 18px 34px rgba(45, 184, 45, 0.34);
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(31, 42, 31, 0.58);
}

.booking-modal-panel {
    width: min(100%, 560px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--shadow);
}

.booking-modal-header {
    margin-bottom: 1rem;
}

.booking-modal-header h2 {
    color: var(--green-30);
    margin-bottom: 0.35rem;
}

.booking-modal-header p:last-child {
    color: var(--muted);
}

.booking-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    color: var(--green-30);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.booking-form {
    display: grid;
    gap: 0.9rem;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.35rem;
}

.field label {
    color: var(--green-30);
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.78rem 0.9rem;
    font: inherit;
    color: var(--text);
    background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green-10);
    box-shadow: 0 0 0 3px rgba(45, 184, 45, 0.12);
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.book-form-submit {
    border: 0;
    border-radius: 999px;
    background: var(--green-30);
    color: var(--white);
    padding: 0.9rem 1.1rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.book-form-submit:hover,
.book-form-submit:focus-visible {
    background: #2e4830;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-wrap {
        flex-wrap: wrap;
        position: relative;
    }

    .brand {
        max-width: 60%;
    }

    .nav-controls {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        order: 3;
        position: relative;
        display: none;
    }

    .nav-controls.open {
        display: flex;
    }

    .nav-search {
        width: 100%;
        flex: 1 1 auto;
        margin-top: 0.5rem;
    }

    .nav-toggle {
        order: 2;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 0 0;
        border-bottom: 1px solid var(--border);
    }

    .site-nav.open {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3.5rem 1rem;
    }

    .hero h1 {
        max-width: 100%;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image-wrap img {
        max-width: 100%;
    }

    .therapy-layout {
        grid-template-columns: 1fr;
    }

    .therapy-image-wrap img {
        max-width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-panel {
        justify-content: flex-start;
    }

    .services-layout-wrap {
        grid-template-columns: 1fr;
    }

    .services-image-wrap img {
        max-width: 100%;
    }

    .therapy-topics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .book-online-fab {
        right: max(0.8rem, env(safe-area-inset-right));
        bottom: max(0.8rem, env(safe-area-inset-bottom));
        padding: 0.82rem 1rem;
    }
}
