:root {
    --cnl-color-accent: #fcac45;
    --cnl-color-article-nav-shadow: rgb(0 0 0 / 0.2);
    --cnl-color-black: #000000;
    --cnl-color-dark: #222222;
    --cnl-color-footer-text: rgb(255 255 255 / 0.8);
    --cnl-color-hero-copy: #444444;
    --cnl-color-hero-heading: #777777;
    --cnl-color-hero-link-border: #b4b4b4;
    --cnl-color-hero-panel-border: rgb(177 190 201);
    --cnl-color-hero-panel-gradient: linear-gradient(135deg, rgb(177 190 201 / 0.32), rgb(252 253 253 / 0.5));
    --cnl-color-hero-panel-shadow: rgb(120 120 120 / 0.2);
    --cnl-color-ink: rgb(34, 34, 34);
    --cnl-color-muted: var(--cnl-color-ink);
    --cnl-color-nav-background: rgb(34 34 34 / 0.95);
    --cnl-color-nav-border: rgb(255 255 255 / 0.4);
    --cnl-color-overlay: rgb(0 0 0 / 0.66);
    --cnl-color-section-overlay: linear-gradient(to bottom, rgb(0 0 0 / 0.8), rgb(0 0 0 / 0.73) 17%, rgb(0 0 0 / 0.66) 35%, rgb(0 0 0 / 0.55) 62%, rgb(0 0 0 / 0.4));
    --cnl-color-section-rule-muted: rgb(252 172 69 / 0.34);
    --cnl-color-surface: rgb(255 255 255 / 1);
    --cnl-color-table-stripe: hsl(204deg 30% 95%);
    --cnl-color-testimonial-credit: #d1d1d1;
    --cnl-color-therapist-name: #f2f2f2;
    --cnl-color-white: rgba(255, 255, 255, 1);
    --cnl-font-family: "Open Sans", sans-serif;
}

@layer base {
    :root {
        --cnl-font-size-content: 1.1rem;
        --cnl-font-size-divider-symbol: 2rem;
        --cnl-font-size-gallery-caption: 1.125rem;
        --cnl-font-size-heading-2: 30px;
        --cnl-font-size-heading-3: clamp(1.25rem, 2.5vw, 1.5rem);
        --cnl-font-size-hover-heading: 1rem;
        --cnl-font-size-list: var(--cnl-font-size-content);
        --cnl-font-size-paragraph: var(--cnl-font-size-content);
        --cnl-font-size-table: var(--cnl-font-size-content);
        color-scheme: light;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--cnl-color-surface);
        color: var(--cnl-color-ink);
        font-family: var(--cnl-font-family);
        line-height: 1.6;
        margin: 0;
    }

    main,
    article,
    [data-content] {
        min-width: 0;
    }

    main > section h1 {
        font-weight: 500;
    }

    main > section h1 strong {
        font-weight: 900;
    }

    main > section h2 strong,
    main > section h3 strong {
        font-weight: 700;
    }

    .home-hero p strong {
        font-weight: 700;
    }

    p,
    li {
        font-family: var(--cnl-font-family);
    }

    :target {
        scroll-margin-top: 4rem;
    }

    :focus-visible {
        outline: 3px solid var(--cnl-color-accent);
        outline-offset: 3px;
    }

    [data-content] {
        color: var(--cnl-color-ink);
        font-size: var(--cnl-font-size-content);
        line-height: 1.8;
    }

    [data-content] > * + * {
        margin-top: 1.5rem;
    }

    [data-content] p {
        -webkit-hyphens: auto;
        font-size: var(--cnl-font-size-paragraph);
        hyphens: auto;
        line-height: 24px;
        text-align: justify;
    }

    [data-content] p + p {
        margin-top: 10px;
    }

    [data-content] table {
        border-collapse: collapse;
        border-spacing: 0;
        color: var(--cnl-color-ink);
        font-family: var(--cnl-font-family);
        font-size: var(--cnl-font-size-table);
        line-height: 1.42857143;
        margin: 2lh 0;
        max-width: 100%;
        width: 100%;
    }

    [data-content] th,
    [data-content] td {
        padding: 10px 15px;
    }

    [data-content] th,
    [data-content] tr:nth-child(even) {
        background-color: var(--cnl-color-table-stripe);
    }

    [data-content] th {
        text-align: left;
    }

    [data-content] strong {
        font-weight: 700;
    }

    [data-content] h2,
    [data-content] h3,
    [data-content] h4 {
        color: var(--cnl-color-dark);
        font-family: var(--cnl-font-family);
        font-weight: 800;
        line-height: 1.2;
    }

    [data-content] h2 {
        border-bottom: 1px solid;
        font-size: var(--cnl-font-size-heading-2);
        font-weight: 500;
        line-height: 1.1;
        margin: 30px 0;
        padding: 30px;
        text-transform: uppercase;
    }

    [data-content] h3 {
        font-size: var(--cnl-font-size-heading-3);
        margin-top: 2.5rem;
    }

    [data-content] a {
        color: var(--cnl-color-accent);
        font-weight: 700;
        text-decoration-thickness: 0.125em;
        text-underline-offset: 0.16em;
    }

    [data-content] ul,
    [data-content] ol {
        color: var(--cnl-color-dark);
        font-size: var(--cnl-font-size-list);
        line-height: 24px;
        margin: 50px 0;
        padding-left: 1.5rem;
    }

    [data-content] li > ul,
    [data-content] li > ol {
        margin: 0.25rem 0 0;
        padding-left: 1.5rem;
    }

    [data-content] li > ul > li,
    [data-content] li > ol > li {
        margin-top: 0;
    }

    [data-content] ul {
        list-style-type: disc;
    }

    [data-content] ol {
        list-style-type: decimal;
    }

    [data-content] li {
        margin-top: 10px;
    }

    [data-content] blockquote {
        border-left: 0.25rem solid var(--cnl-color-accent);
        color: var(--cnl-color-muted);
        font-style: italic;
        margin-inline: 0;
        padding: 0.75rem 1.25rem;
    }

    [data-content] hr {
        border: 0;
        height: auto;
        margin: 50px 0;
        text-align: center;
    }

    [data-content] hr::after {
        color: var(--cnl-color-accent);
        content: "∴";
        font-family: var(--cnl-font-family);
        font-size: var(--cnl-font-size-divider-symbol);
        line-height: 1;
    }

    [data-content] img {
        border-radius: 0.75rem;
        height: auto;
        max-inline-size: 100%;
        max-width: 100%;
        width: auto;
    }

    [data-content] pre {
        max-width: 100%;
        overflow-x: auto;
    }

    [data-content] img.aligncenter {
        display: block;
        margin: 40px auto;
    }

    [data-content] .alignleft,
    [data-content] .alignright {
        margin: 0.5rem auto 1.5rem;
    }

    [data-content] .columns2 {
        columns: 1;
        orphans: 2;
        widows: 2;
    }

    [data-content] .columns2 > li {
        break-inside: avoid-column;
    }

    [data-content] .row {
        display: grid;
        gap: 1.25rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    [data-content] .portfolio-item {
        margin: 0;
    }

    [data-content] .hover-bg {
        background-color: var(--cnl-color-black);
        overflow: hidden;
        position: relative;
    }

    [data-content] .hover-bg > a {
        display: block;
    }

    [data-content] .hover-bg img {
        border-radius: 0;
        width: 100%;
    }

    [data-content] .hover-text {
        align-items: center;
        background-color: var(--cnl-color-overlay);
        color: var(--cnl-color-white);
        display: flex;
        flex-direction: column;
        inset: 0;
        justify-content: center;
        opacity: 0;
        padding: 1rem;
        position: absolute;
        text-align: center;
        transition: opacity 0.3s ease;
    }

    [data-content] .hover-bg:hover .hover-text,
    [data-content] .hover-bg:focus-within .hover-text {
        opacity: 1;
    }

    [data-content] .hover-text h3 {
        color: inherit;
        font-size: var(--cnl-font-size-hover-heading);
        font-weight: 500;
        margin: 0;
        text-transform: uppercase;
    }

    [data-content] .fa {
        display: inline-block;
        font-style: normal;
    }

    [data-content] .fa-plus::before {
        content: "+";
    }

    [data-content] .fa-cog::before {
        content: "⚙";
    }

    .fa-mobile {
        border: 0.1em solid currentColor;
        border-radius: 0.1em;
        display: inline-block;
        font-style: normal;
        height: 1.05em;
        margin-right: 0.15em;
        vertical-align: -0.15em;
        width: 0.7em;
    }

    .fa-mobile::after {
        background-color: currentColor;
        border-radius: 50%;
        content: "";
        display: block;
        height: 0.16em;
        margin: 0.78em auto 0;
        width: 0.16em;
    }

    @media (min-width: 48rem) {
        [data-content] .alignleft {
            float: left;
            margin: 0.5rem 1.75rem 1rem 0;
        }

        [data-content] .alignright {
            float: right;
            margin: 0.5rem 0 1rem 1.75rem;
        }

        [data-content] .columns2 {
            column-gap: 2.5rem;
            columns: 2;
        }

        [data-content] .row {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    @media (max-width: 47.999rem) {
        [data-content] table {
            display: block;
            overflow-x: auto;
        }
    }

    @media (min-width: 64rem) {
        [data-content] .row {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }

    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
    }
}

@layer components {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100dvh;
    }

    main {
        flex: 1;
    }

    .article-main {
        margin: 0 auto;
        max-width: 51rem;
        padding: 8rem 1.25rem 200px;
        width: 100%;
    }

    .article-main h1 {
        color: var(--cnl-color-accent);
        font-size: 2.25rem;
        font-weight: 500;
        line-height: 2;
        margin: 0 0 3.75rem;
        text-align: center;
        text-transform: uppercase;
    }

    .article-main h1 svg {
        display: inline-block;
        height: 1.25rem;
        width: 1.25rem;
    }

    main > section {
        padding: 5rem 1.25rem;
        scroll-margin-top: 4rem;
    }

    .home-hero {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 46rem;
        padding-bottom: 4rem;
        padding-top: 8rem;
        text-align: center;
    }

    .home-hero > div {
        max-width: 750px;
        padding-top: 10%;
        width: 100%;
    }

    .home-hero-overlay {
        border-radius: 10px;
        padding: 2rem 0.625rem;
    }

    .home-hero > div > a {
        align-items: center;
        background-color: transparent;
        border: 2px solid var(--cnl-color-hero-link-border);
        border-radius: 50%;
        color: var(--cnl-color-white);
        display: inline-flex;
        height: 3rem;
        justify-content: center;
        margin-top: 4rem;
        text-decoration: none;
        transition:
            background-color 0.2s,
            border-color 0.2s;
        width: 3rem;
    }

    .home-hero > div > a:hover {
        background-color: var(--cnl-color-accent);
        border-color: var(--cnl-color-accent);
    }

    .home-hero > div > a svg {
        height: 1.5rem;
        width: 1.5rem;
    }

    .home-hero h1,
    main > section h2,
    main > section h3 {
        font-weight: 300;
        line-height: 1.1;
        margin: 0;
        text-transform: uppercase;
    }

    .home-hero h1 {
        color: var(--cnl-color-hero-heading);
        font-size: 2.25rem;
        font-weight: 500;
    }

    .home-hero p {
        color: var(--cnl-color-hero-copy);
        font-size: 1rem;
        font-weight: 300;
        margin: 1.25rem 0 0;
    }

    main > section h2 {
        font-size: clamp(1.875rem, 5vw, 3rem);
    }

    #tf-team > div > div:first-child,
    #tf-services > div > div:first-child,
    #tf-clients > div > div:first-child,
    #tf-works > div > div:first-child,
    #tf-testimonials > div > div:first-child,
    #tf-contact > div > div:first-child {
        text-align: center;
    }

    #tf-about > div {
        display: grid;
        gap: 2.5rem;
    }

    #tf-about > div > div:first-child {
        display: none;
    }

    #tf-about h2 {
        color: var(--cnl-color-ink);
        font-size: 30px;
    }

    #tf-about h2 + .section-rule {
        margin-top: 1.25rem;
    }

    #tf-about h2 + .section-rule + p,
    #tf-about > div > div:last-child > p {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 2.5rem;
    }

    #tf-about > div > div:last-child > div > p {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.1;
        margin: 0.625rem 0;
        text-transform: uppercase;
    }

    #tf-about ul {
        display: grid;
        gap: 0.5rem;
        list-style: none;
        margin: 1.75rem 0 0;
        padding: 0;
    }

    #tf-about li {
        align-items: flex-start;
        display: flex;
        font-size: 1rem;
        gap: 0.75rem;
        line-height: 30px;
    }

    #tf-about li svg {
        color: var(--cnl-color-accent);
        flex: none;
        height: 1rem;
        margin-top: 7px;
        width: 1rem;
    }

    #site-navigation,
    #article-navigation {
        background-color: var(--cnl-color-nav-background);
        color: var(--cnl-color-white);
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 50;
    }

    #site-navigation > div,
    #article-navigation > div,
    main > section > div,
    footer > div {
        margin: 0 auto;
        width: min(100%, 80rem);
    }

    #site-navigation > div {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 1rem 1.25rem;
    }

    #article-navigation {
        background-color: var(--cnl-color-dark);
        box-shadow:
            0 10px 15px -3px var(--cnl-color-article-nav-shadow),
            0 4px 6px -4px var(--cnl-color-article-nav-shadow);
    }

    #article-navigation > div {
        align-items: center;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0.75rem;
    }

    #article-navigation > div > div {
        display: flex;
    }

    #article-navigation > div > div:first-child {
        justify-content: flex-start;
    }

    #article-navigation > div > div:last-child {
        justify-content: flex-end;
    }

    #article-navigation > div > div a {
        align-items: center;
        color: var(--cnl-color-accent);
        display: inline-flex;
        font-size: 0.875rem;
        font-weight: 600;
        gap: 0.5rem;
        max-width: 100%;
        min-height: 2.75rem;
        min-width: 2.75rem;
        padding: 0.5rem;
        text-decoration: none;
    }

    .article-navigation-chevron {
        flex: 0 0 auto;
        height: 1.5rem;
        width: 1.5rem;
    }

    .article-navigation-chevron-left {
        transform: rotate(90deg);
    }

    .article-navigation-chevron-right {
        transform: rotate(-90deg);
    }

    #article-navigation > div > a {
        color: var(--cnl-color-accent);
        font-size: 0.875rem;
        font-weight: 900;
        justify-self: center;
        letter-spacing: 0.025em;
        padding: 0.5rem;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
    }

    #article-navigation > div > div a span:not([aria-hidden]) {
        display: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #site-navigation a,
    #article-navigation a {
        color: inherit;
        text-decoration: none;
    }

    #site-navigation > div > a {
        font-size: 1.25rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    [data-navigation-toggle] {
        align-items: center;
        background-color: transparent;
        border: 1px solid var(--cnl-color-nav-border);
        border-radius: 0.375rem;
        color: var(--cnl-color-white);
        display: inline-flex;
        height: 2.75rem;
        justify-content: center;
        width: 2.75rem;
    }

    [data-navigation-toggle] svg {
        flex: 0 0 auto;
        height: 1.5rem;
        width: 1.5rem;
    }

    [data-navigation-panel] {
        display: none;
        padding: 0 1.25rem 1.25rem;
    }

    [data-menu-open="true"] [data-navigation-panel] {
        display: block;
    }

    [data-navigation-panel] ul {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    [data-navigation-panel] a {
        display: block;
        font-size: 0.875rem;
        font-weight: 400;
        letter-spacing: 0.08em;
        padding: 0.75rem;
        text-transform: uppercase;
    }

    .home-dark-section,
    .home-resources-section,
    .home-testimonials-section {
        color: var(--cnl-color-white);
    }

    #tf-services > div > div:last-child,
    #tf-works > div > div:last-child {
        display: grid;
        gap: 2rem 1.25rem;
        grid-template-columns: 1fr;
        margin-top: 4rem;
    }

    #tf-clients > div > div:nth-child(2) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 4rem;
        row-gap: 2rem;
    }

    #tf-clients .home-gallery-link {
        padding: 0 0.625rem;
        width: 100%;
    }

    #tf-clients > div > div:nth-child(3) {
        margin: 6rem auto 0;
        max-width: 56rem;
        text-align: center;
    }

    #tf-clients > div > div:nth-child(3) h3 {
        font-size: clamp(1.5rem, 3vw, 1.875rem);
    }

    #tf-clients > div > div:nth-child(3) p {
        font-size: 1.125rem;
        font-style: italic;
        margin: 3rem auto 0;
        max-width: 32rem;
    }

    #tf-testimonials > div {
        max-width: 64rem;
    }

    #tf-testimonials > div > a {
        color: inherit;
        display: block;
        text-decoration: none;
    }

    #tf-testimonials > div > a > div:first-child {
        text-align: center;
    }

    #testimonial {
        display: flex;
        gap: 1rem;
        margin: 3rem auto 0;
        max-width: 48rem;
        overflow-x: auto;
        padding: 0 0 1rem;
        scroll-snap-type: x mandatory;
    }

    #testimonial blockquote {
        flex: 0 0 100%;
        margin: 0;
        padding: 1rem 1.5rem;
        scroll-snap-align: center;
        text-align: center;
    }

    #testimonial p {
        font-weight: 700;
        line-height: 1.25;
        margin: 0;
        text-transform: uppercase;
    }

    #testimonial footer {
        color: var(--cnl-color-testimonial-credit);
        margin-top: 1.5rem;
    }

    #tf-contact > div {
        max-width: 48rem;
    }

    #tf-contact > div > div:nth-child(2) {
        margin-top: 4rem;
        text-align: center;
    }

    #tf-contact article {
        margin-bottom: 3rem;
    }

    #tf-contact h3 {
        font-size: 1.125rem;
        font-weight: 900;
        line-height: 1.25;
        margin: 0;
        text-transform: uppercase;
    }

    #tf-contact h3 a,
    #tf-contact a {
        color: var(--cnl-color-accent);
    }

    #tf-contact article p {
        font-size: 0.875rem;
        margin: 1rem 0 0;
    }

    #tf-contact article p:has(em) {
        font-size: 0.75rem;
    }

    #tf-contact > div > div:last-child {
        margin-top: 2.5rem;
        text-align: center;
    }

    #tf-contact > div > div:last-child p {
        margin: 1rem 0 0;
    }

    #therapeutes {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 4rem;
        row-gap: 3rem;
    }

    #therapeutes article {
        padding: 0 1rem;
        text-align: center;
        width: 100%;
    }

    #therapeutes a,
    .home-gallery-link {
        color: inherit;
        display: block;
        text-align: center;
        text-decoration: none;
    }

    #therapeutes img {
        border: 4px solid transparent;
        border-radius: 50%;
        height: 7.5rem;
        object-fit: cover;
        width: 7.5rem;
    }

    #therapeutes article > a > div {
        color: var(--cnl-color-therapist-name);
        margin-top: 0.75rem;
    }

    #therapeutes h3 {
        font-size: 1.125rem;
        font-weight: 900;
        line-height: 1.25;
        margin: 0;
        text-transform: none;
    }

    #therapeutes p {
        font-size: 0.875rem;
        line-height: 1.25;
        margin: 0.75rem 0 0;
    }

    #therapeutes p:has(em) {
        font-size: 0.75rem;
    }

    .home-gallery-link {
        aspect-ratio: 1;
        display: grid;
        grid-template-rows: 5rem minmax(0, 1fr);
        overflow: hidden;
    }

    .home-gallery-link > span:last-child {
        display: block;
        height: auto;
        min-height: 0;
        overflow: hidden;
        position: relative;
    }

    .home-gallery-link img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .home-gallery-caption {
        align-items: center;
        display: flex;
        font-size: var(--cnl-font-size-gallery-caption);
        font-weight: 500;
        justify-content: center;
        padding: 1rem;
        text-align: center;
        text-transform: uppercase;
    }

    .home-gallery-overlay {
        align-items: center;
        color: var(--cnl-color-white);
        display: flex;
        flex-direction: column;
        inset: 0;
        justify-content: center;
        padding: 1rem;
        position: absolute;
        text-align: center;
    }

    body > footer {
        background-color: var(--cnl-color-dark);
        color: var(--cnl-color-footer-text);
        padding: 2rem 1.25rem calc(2rem + env(safe-area-inset-bottom));
    }

    body > footer a {
        color: var(--cnl-color-accent);
        text-decoration: none;
    }

    body > footer a:hover,
    body > footer a:focus-visible {
        text-decoration: underline;
    }

    .screen-reader-text {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        white-space: nowrap;
        width: 1px;
    }

    @media (max-width: 47.999rem) {
        #site-navigation > div {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
        }

        [data-navigation-panel] {
            grid-column: 1 / -1;
            width: 100%;
        }
    }

    @media (max-width: 39.999rem) {
        [data-content] h2 {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }

        [data-content] p {
            text-align: left;
        }
    }

    @media (min-width: 48rem) {
        .home-hero p {
            font-size: 21px;
        }

        #tf-about > div {
            grid-template-columns: repeat(12, minmax(0, 1fr));
        }

        #tf-about > div > div:first-child {
            display: block;
            grid-column: span 4;
        }

        #tf-about > div > div:last-child {
            grid-column: 6 / span 7;
        }

        #therapeutes article {
            width: 50%;
        }

        #testimonial blockquote {
            padding-left: 2.5rem;
            padding-right: 2.5rem;
        }

        #tf-services > div > div:last-child,
        #tf-works > div > div:last-child {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        #tf-clients .home-gallery-link {
            width: 50%;
        }

        #site-navigation {
            background-color: transparent;
        }

        #site-navigation[data-scrolled="true"] {
            background-color: var(--cnl-color-nav-background);
        }

        [data-navigation-toggle] {
            display: none;
        }

        [data-navigation-panel] {
            display: block;
            padding: 0;
        }

        [data-navigation-panel] ul {
            align-items: center;
            flex-direction: row;
        }
    }

    @media (min-width: 40rem) {
        [data-content] > ul,
        [data-content] > ol {
            margin-left: 50px;
            margin-right: 50px;
            padding-left: 40px;
        }

        .article-main {
            padding: 9rem 2rem 200px;
        }

        #article-navigation > div {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        #article-navigation > div > div a span:not([aria-hidden]) {
            display: inline;
        }
    }

    @media (min-width: 64rem) {
        #therapeutes article {
            width: 25%;
        }

        #tf-services > div > div:last-child,
        #tf-works > div > div:last-child {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        #tf-clients .home-gallery-link {
            width: 25%;
        }
    }

    .home-hero .color {
        color: var(--cnl-color-accent);
    }

    .home-hero {
        background-attachment: fixed;
        background-image: url("/img/01.jpg");
        background-position: center;
        background-size: cover;
    }

    .home-hero-overlay {
        background: var(--cnl-color-hero-panel-gradient);
        border: 1px solid var(--cnl-color-hero-panel-border);
        box-shadow: 10px 10px 10px var(--cnl-color-hero-panel-shadow);
    }

    .home-dark-section {
        background-attachment: fixed;
        background-image: var(--cnl-color-section-overlay), url("/img/03.jpg");
        background-position: center;
        background-size: cover;
    }

    .home-resources-section {
        background-attachment: fixed;
        background-image: var(--cnl-color-section-overlay), url("/img/04.jpg");
        background-position: center;
        background-size: cover;
    }

    .home-testimonials-section {
        background-attachment: fixed;
        background-image: var(--cnl-color-section-overlay), url("/img/05.jpg");
        background-position: center;
        background-size: cover;
    }

    .section-rule {
        border-top: 4px solid var(--cnl-color-accent);
        height: 10px;
        margin-top: 1.25rem;
        width: 60px;
    }

    .section-rule.is-centered {
        margin-left: auto;
        margin-right: auto;
    }

    .section-rule hr {
        border: 0;
        border-top: 4px solid var(--cnl-color-section-rule-muted);
        margin: 10px auto 0;
        width: 40px;
    }

    .home-gallery-caption {
        background-color: var(--cnl-color-black);
        color: var(--cnl-color-accent);
        min-height: 80px;
    }

    .home-gallery-overlay {
        background-color: var(--cnl-color-overlay);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .home-gallery-link:hover .home-gallery-overlay,
    .home-gallery-link:focus-visible .home-gallery-overlay {
        opacity: 1;
    }

    [data-site-navigation][data-navigation-ready="true"] [data-navigation-panel] {
        display: none;
    }

    [data-site-navigation][data-navigation-ready="true"][data-menu-open="true"] [data-navigation-panel] {
        display: block;
    }

    @media (min-width: 48rem) {
        [data-site-navigation][data-navigation-ready="true"] [data-navigation-toggle] {
            display: none;
        }

        [data-site-navigation][data-navigation-ready="true"] [data-navigation-panel] {
            display: block;
        }
    }
}
