/*
Theme Name: Ascenzo Therapy
Author: Ricardo
Description: Custom WordPress theme for Ascenzo Therapy
Version: 1.0
*/

:root {
    --deep-teal: #0f4d4a;
    --sage-green: #5d7f72;
    --terracotta: #d96b45;
    --marigold: #f4b93f;
    --cream: #fdf4e6;
    --sand: #e8c58e;
    --white: #ffffff;
    --text: #263634;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* HEADER */

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

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    color: var(--deep-teal);
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--deep-teal);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--terracotta);
}

.nav-contact {
    background: var(--deep-teal);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 30px;
}

.nav-contact:hover {
    background: var(--terracotta);
}

/* MAIN PAGE */

main {
    min-height: 500px;
}

/* FOOTER */

.site-footer {
    background: var(--deep-teal);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.site-footer p {
    margin: 5px 0;
}

/* MOBILE NAVIGATION */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: var(--deep-teal);
    transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 850px) {

    .nav-wrap {
        position: relative;
        flex-direction: row;
        gap: 16px;
        padding: 12px 20px;
    }

    .brand {
        min-width: 0;
        font-size: 24px;
    }

    .menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        padding: 18px 20px 22px;
        background: var(--white);
        border-top: 1px solid rgba(15,77,74,.10);
        border-bottom: 1px solid rgba(15,77,74,.15);
        box-shadow: 0 10px 22px rgba(15,77,74,.08);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        display: block;
        padding: 11px 4px;
    }

    .nav-contact {
        margin-top: 8px;
        padding: 11px 18px !important;
        text-align: center;
    }
}
/* LOGO */

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand span {
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 700;
    color: var(--deep-teal);
}

@media (max-width: 850px) {

    .brand-logo {
        width: 64px;
        height: 64px;
    }

    .brand span {
        font-size: 23px;
        line-height: 1.15;
    }
}
/* =========================================
   ASCENZO THERAPY - NEW HOME PAGE
========================================= */

.ascenzo-home {
    margin: 0;
    padding: 0;
}

/* Shared width */

.ascenzo-container,
.ascenzo-hero-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Small section labels */

.ascenzo-eyebrow {
    margin: 0 0 18px;
    color: #d96b45;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   HERO
========================================= */

.ascenzo-hero {
    background: #fdf4e6;
    padding: 115px 30px 125px;
}

.ascenzo-hero-inner {
    display: flex;
    align-items: center;
}

.ascenzo-hero-copy {
    max-width: 850px;
}

.ascenzo-hero h1 {
    margin: 0;
    color: #0f4d4a;
    font-size: clamp(52px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 600;
}

.ascenzo-hero-text {
    max-width: 720px;
    margin: 28px 0 34px;
    color: #465b57;
    font-size: 20px;
    line-height: 1.75;
}

/* Main button */

.ascenzo-button {
    display: inline-block;
    padding: 14px 24px;
    background: #0f4d4a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: 0.2s ease;
}

.ascenzo-button:hover {
    background: #163f3d;
    color: #ffffff;
}

/* =========================================
   INTRODUCTION
========================================= */

.ascenzo-intro {
    padding: 105px 30px;
    background: #ffffff;
}

.ascenzo-intro h2 {
    max-width: 800px;
    margin: 0;
    color: #0f4d4a;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 600;
}

.ascenzo-intro-copy {
    max-width: 760px;
    margin: 48px 0 0 auto;
    padding-left: 50px;
    border-left: 2px solid #e8c58e;
}

.ascenzo-intro-copy p {
    margin: 0 0 24px;
    color: #4f5d5a;
    font-size: 18px;
    line-height: 1.8;
}

.ascenzo-intro-copy p:last-child {
    margin-bottom: 0;
}

/* =========================================
   SERVICES
========================================= */

.ascenzo-services {
    padding: 105px 30px;
    background: #f7eee1;
}

.ascenzo-service-list {
    margin-top: 35px;
    border-top: 1px solid rgba(15, 77, 74, 0.22);
}

.ascenzo-service-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(15, 77, 74, 0.22);
}

.ascenzo-service-row h3 {
    margin: 0;
    color: #0f4d4a;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.ascenzo-service-row p {
    max-width: 650px;
    margin: 0;
    color: #53625e;
    font-size: 17px;
    line-height: 1.75;
}

.ascenzo-services-button {
    margin-top: 42px;
}

.ascenzo-button-outline {
    display: inline-block;
    padding: 13px 22px;
    color: #0f4d4a;
    border: 1px solid #0f4d4a;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.ascenzo-button-outline:hover {
    background: #0f4d4a;
    color: #ffffff;
}

/* =========================================
   CLOSING / CONTACT
========================================= */

.ascenzo-closing {
    padding: 110px 30px;
    background: #0f4d4a;
    color: #ffffff;
}

.ascenzo-closing-inner {
    max-width: 850px;
    text-align: center;
}

.ascenzo-closing .ascenzo-eyebrow {
    color: #f4b93f;
}

.ascenzo-closing h2 {
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 600;
}

.ascenzo-closing p:not(.ascenzo-eyebrow) {
    max-width: 650px;
    margin: 24px auto 32px;
    color: #e5eeeb;
    font-size: 19px;
    line-height: 1.7;
}

.ascenzo-button-light {
    display: inline-block;
    padding: 14px 24px;
    background: #fdf4e6;
    color: #0f4d4a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: 0.2s ease;
}

.ascenzo-button-light:hover {
    background: #ffffff;
    color: #0f4d4a;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .ascenzo-hero {
        padding: 80px 22px 90px;
    }

    .ascenzo-hero h1 {
        letter-spacing: -1.5px;
    }

    .ascenzo-hero-text {
        font-size: 18px;
    }

    .ascenzo-intro,
    .ascenzo-services,
    .ascenzo-closing {
        padding: 75px 22px;
    }

    .ascenzo-intro-copy {
        margin-top: 35px;
        margin-left: 0;
        padding-left: 25px;
    }

    .ascenzo-service-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 30px 0;
    }

    .ascenzo-service-row h3 {
        font-size: 22px;
    }
}

@media (max-width: 500px) {

    .ascenzo-hero {
        padding-top: 65px;
    }

    .ascenzo-hero h1 {
        font-size: 45px;
    }

    .ascenzo-intro h2 {
        font-size: 37px;
    }

    .ascenzo-intro-copy {
        padding-left: 20px;
    }

    .ascenzo-closing h2 {
        font-size: 39px;
    }
}
/* =========================================
   ASCENZO THERAPY - EDITORIAL HOME
========================================= */

.ascenzo-home-new {
    background: #fdf8f1;
    color: #29433f;
}

.therapy-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.therapy-kicker {
    margin: 0 0 16px;
    color: #c86243;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

/* HERO */

.therapy-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 120px;
    background: #f7ead9;
}

.therapy-hero-shape {
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: -180px;
    background: #dfe9e3;
    border-radius: 50%;
    opacity: .7;
}

.therapy-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
}

.therapy-hero-copy {
    max-width: 760px;
}

.therapy-hero h1 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 7vw, 82px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -2px;
}

.therapy-hero h1 em {
    display: block;
    margin-top: 8px;
    color: #8a5c48;
    font-weight: 400;
}

.therapy-hero-text {
    max-width: 690px;
    margin: 30px 0 0;
    font-size: 20px;
    line-height: 1.8;
    color: #50655f;
}

.therapy-hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.therapy-button {
    display: inline-block;
    padding: 13px 24px;
    background: #174f4a;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
}

.therapy-button:hover {
    background: #113d39;
    color: #fff;
}

.therapy-language {
    color: #6b7772;
    font-size: 14px;
}

.therapy-hero-note {
    padding: 34px 0 10px 34px;
    border-left: 1px solid rgba(23,79,74,.28);
}

.therapy-note-small {
    margin: 0 0 12px;
    font-size: 12px;
    color: #8a5c48;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.therapy-note-large {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.3;
}

.therapy-note-line {
    width: 70px;
    height: 1px;
    margin-top: 24px;
    background: #c86243;
}

/* INTRO */

.therapy-introduction {
    padding: 110px 0;
    background: #fffdf9;
}

.therapy-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.therapy-intro-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 400;
}

.therapy-intro-copy {
    padding-top: 6px;
}

.therapy-intro-copy p {
    margin: 0 0 25px;
    color: #566762;
    font-size: 18px;
    line-height: 1.82;
}

.therapy-intro-copy .therapy-emphasis {
    padding: 24px 28px;
    margin-top: 34px;
    background: #f4eadc;
    color: #3f5953;
    border-left: 3px solid #c86243;
}

/* SERVICES */

.therapy-services {
    padding: 110px 0;
    background: #eaf0ec;
}

.therapy-services-heading {
    max-width: 760px;
}

.therapy-services-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 400;
}

.therapy-services-heading > p:last-child {
    max-width: 680px;
    margin: 24px 0 0;
    color: #5d6e68;
    font-size: 18px;
    line-height: 1.75;
}

.therapy-service-grid {
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(23,79,74,.2);
    border-bottom: 1px solid rgba(23,79,74,.2);
}

.therapy-service {
    min-height: 430px;
    padding: 36px 30px 34px;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid rgba(23,79,74,.2);
    transition: .2s ease;
}

.therapy-service:last-child {
    border-right: 0;
}

.therapy-service:hover {
    background: rgba(255,255,255,.48);
}

.therapy-service-featured {
    background: #f7efe4;
}

.therapy-service-number {
    display: block;
    margin-bottom: 56px;
    color: #b66d55;
    font-size: 13px;
    letter-spacing: 1.6px;
}

.therapy-service h3 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.18;
    font-weight: 400;
}

.therapy-service p {
    margin: 24px 0 0;
    color: #596a65;
    line-height: 1.72;
}

.therapy-service-link {
    display: inline-block;
    margin-top: 28px;
    color: #174f4a;
    font-weight: 600;
}

.therapy-services-all {
    margin-top: 34px;
}

.therapy-services-all a {
    color: #174f4a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #174f4a;
}

/* ABOUT PREVIEW */

.therapy-about-preview {
    padding: 115px 0;
    background: #fffdf9;
}

.therapy-about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.therapy-about-visual {
    width: 100%;
}

.therapy-about-label {
    display: block;
    margin-bottom: 18px;
    color: #a36a54;
    font-size: 12px;
    letter-spacing: 2px;
}

.therapy-about-office-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.therapy-about-copy {
    max-width: 820px;
}

.therapy-about-copy h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 400;
}

.therapy-about-copy > p:not(.therapy-kicker):not(.therapy-credentials) {
    margin: 26px 0 0;
    color: #586963;
    font-size: 18px;
    line-height: 1.8;
}

.therapy-credentials {
    margin: 34px 0 0;
    padding-top: 22px;
    border-top: 1px solid #ded7cd;
    color: #3b514c;
    line-height: 1.7;
}

.therapy-text-link {
    display: inline-block;
    margin-top: 28px;
    color: #174f4a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #174f4a;
}

/* CLOSING */

.therapy-closing {
    position: relative;
    overflow: hidden;
    padding: 115px 0 120px;
    background: #174f4a;
}

.therapy-closing-decoration {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -220px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
}

.therapy-closing-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.therapy-closing .therapy-kicker {
    color: #efbd82;
}

.therapy-closing h2 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 400;
}

.therapy-closing p:not(.therapy-kicker) {
    max-width: 620px;
    margin: 26px 0 32px;
    color: #dbe8e3;
    font-size: 19px;
    line-height: 1.7;
}

.therapy-button-light {
    background: #f7ead9;
    color: #174f4a;
}

.therapy-button-light:hover {
    background: #fff;
    color: #174f4a;
}

/* MOBILE */

@media (max-width: 900px) {

    .therapy-hero-grid,
    .therapy-intro-grid,
    .therapy-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .therapy-hero-note {
        max-width: 520px;
    }

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

    .therapy-service {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(23,79,74,.2);
    }

    .therapy-service:last-child {
        border-bottom: 0;
    }

    .therapy-service-number {
        margin-bottom: 24px;
    }

    .therapy-about-office-photo {
        max-width: 620px;
    }
}

@media (max-width: 600px) {

    .therapy-container {
        width: min(100% - 36px, 1180px);
    }

    .therapy-hero {
        padding: 78px 0 85px;
    }

    .therapy-hero h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .therapy-hero-text {
        font-size: 18px;
    }

    .therapy-introduction,
    .therapy-services,
    .therapy-about-preview,
    .therapy-closing {
        padding: 82px 0;
    }

    .therapy-intro-heading h2,
    .therapy-services-heading h2,
    .therapy-about-copy h2 {
        font-size: 40px;
    }

    .therapy-about-office-photo {
        max-width: 100%;
    }

    .therapy-service {
        padding: 30px 20px;
    }

    .therapy-service h3 {
        font-size: 28px;
    }

    .therapy-closing h2 {
        font-size: 45px;
    }
}
/* =========================================
   ASCENZO THERAPY - SERVICES PAGE
========================================= */

.therapy-services-page {
    background: #fffdf9;
    color: #29433f;
}

/* PAGE HERO */

.services-page-hero {
    padding: 105px 0 95px;
    background: #f7ead9;
}

.services-page-hero-inner {
    max-width: 950px;
}

.services-page-hero h1 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 74px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -2px;
}

.services-page-hero h1 em {
    display: block;
    margin-top: 8px;
    color: #8a5c48;
    font-weight: 400;
}

.services-page-hero > .therapy-container > p:last-child {
    max-width: 700px;
    margin: 28px 0 0;
    color: #566762;
    font-size: 19px;
    line-height: 1.75;
}


/* SERVICE SECTIONS */

.service-detail {
    padding: 110px 0;
    scroll-margin-top: 110px;
    background: #fffdf9;
}

.service-detail-alt {
    background: #edf2ee;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.service-detail-heading {
    position: sticky;
    top: 130px;
}

.service-detail-number {
    display: block;
    margin-bottom: 32px;
    color: #b46c53;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1;
}

.service-detail-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.service-detail-copy {
    max-width: 690px;
}

.service-detail-copy > p {
    margin: 0 0 25px;
    color: #576963;
    font-size: 18px;
    line-height: 1.82;
}


/* METHODS */

.service-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 34px 0 28px;
}

.service-methods span {
    padding: 8px 12px;
    border: 1px solid #cbd8d2;
    background: #f7faf8;
    color: #35564f;
    font-size: 13px;
    letter-spacing: .3px;
}

.service-detail-note {
    padding: 22px 26px;
    border-left: 3px solid #c86243;
    background: #f6ecdf;
    color: #435a54 !important;
}


/* KAP PROCESS */

.kap-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 42px 0;
    border-top: 1px solid rgba(23,79,74,.2);
    border-bottom: 1px solid rgba(23,79,74,.2);
}

.kap-process > div {
    padding: 24px 18px;
    border-right: 1px solid rgba(23,79,74,.2);
}

.kap-process > div:last-child {
    border-right: 0;
}

.kap-process span {
    display: block;
    margin-bottom: 10px;
    color: #b66d55;
    font-size: 12px;
    letter-spacing: 1.4px;
}

.kap-process strong {
    display: block;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}


/* JOURNEY CLINICAL */

.journey-section {
    margin-top: 48px;
    padding: 34px 36px;
    background: #f7ead9;
    border-left: 3px solid #c86243;
}

.journey-section h3 {
    margin: 0 0 20px;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 400;
}

.journey-section p:not(.therapy-kicker) {
    margin: 0 0 20px;
    color: #566762;
    font-size: 17px;
    line-height: 1.75;
}

.journey-section .therapy-text-link {
    margin-top: 8px;
}


/* COUPLES QUOTE */

.service-quote {
    margin: 36px 0;
    padding: 8px 0 8px 28px;
    border-left: 2px solid #c86243;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.45;
    font-style: italic;
}


/* CLOSING */

.services-page-closing {
    padding: 110px 0;
    background: #174f4a;
}

.services-page-closing-inner {
    max-width: 850px;
}

.services-page-closing .therapy-kicker {
    color: #efbd82;
}

.services-page-closing h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.services-page-closing p:not(.therapy-kicker) {
    max-width: 620px;
    margin: 25px 0 32px;
    color: #dbe8e3;
    font-size: 18px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 900px) {

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-detail-heading {
        position: static;
    }

    .kap-process {
        grid-template-columns: 1fr;
    }

    .kap-process > div {
        border-right: 0;
        border-bottom: 1px solid rgba(23,79,74,.2);
    }

    .kap-process > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 600px) {

    .services-page-hero,
    .service-detail,
    .services-page-closing {
        padding: 78px 0;
    }

    .services-page-hero h1 {
        font-size: 46px;
        letter-spacing: -1px;
    }

    .service-detail-number {
        font-size: 42px;
    }

    .service-detail-heading h2 {
        font-size: 38px;
    }

    .service-detail-copy > p {
        font-size: 17px;
    }

    .journey-section {
        padding: 28px 22px;
    }

    .service-quote {
        font-size: 24px;
        padding-left: 20px;
    }

    .services-page-closing h2 {
        font-size: 42px;
    }
}
/* =========================================
   ASCENZO THERAPY - ABOUT PAGE
========================================= */

.therapy-about-page {
    background: #fffdf9;
    color: #29433f;
}

/* HERO */

.about-page-hero {
    padding: 110px 0 105px;
    background: #f7ead9;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.about-hero-heading h1 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 82px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -2px;
}

.about-hero-heading h1 em {
    display: block;
    margin-top: 8px;
    color: #8a5c48;
    font-weight: 400;
}

.about-hero-intro {
    max-width: 720px;
}

.about-hero-intro p {
    margin: 0 0 24px;
    color: #566762;
    font-size: 18px;
    line-height: 1.82;
}

.about-hero-intro .about-lead {
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    line-height: 1.45;
}

.about-together {
    padding-left: 24px;
    border-left: 2px solid #c86243;
    color: #8a5c48 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px !important;
}

/* IDENTITY */

.about-identity {
    padding: 90px 0;
    background: #eaf0ec;
}

.about-identity-grid {
    display: grid;
    grid-template-columns: 1fr .8fr .9fr;
    gap: 45px;
    align-items: center;
}

.about-name-block h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 400;
}

.about-title {
    margin: 22px 0 4px;
    color: #3f5953;
    font-size: 18px;
}

.about-founder {
    margin: 0;
    color: #7a6b62;
}

.about-photo-block {
    width: 100%;
}

.about-photo {
    display: block;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
}

.about-language-block {
    padding: 34px 36px;
    background: #f7ead9;
    border-left: 3px solid #c86243;
}

.about-language-label {
    display: block;
    margin-bottom: 10px;
    color: #a36a54;
    font-size: 12px;
    letter-spacing: 1.8px;
}

.about-language-block strong {
    display: block;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.about-language-block p {
    margin: 12px 0 0;
    color: #5d6e68;
    line-height: 1.7;
}

/* APPROACH */

.about-approach {
    padding: 110px 0;
    background: #fffdf9;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.about-approach-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
}

.about-approach-copy p {
    margin: 0 0 25px;
    color: #566762;
    font-size: 18px;
    line-height: 1.82;
}

.about-quote {
    margin: 38px 0 0;
    padding: 26px 0 26px 30px;
    border-left: 3px solid #c86243;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.5;
    font-style: italic;
}

/* TRAINING */

.about-training {
    padding: 105px 0;
    background: #f3e8d9;
}

.about-training-heading {
    max-width: 760px;
}

.about-training-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
}

.about-method-list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-method-list span {
    padding: 11px 15px;
    border: 1px solid rgba(23,79,74,.24);
    background: rgba(255,255,255,.45);
    color: #35564f;
    font-size: 14px;
}

/* PROFESSIONAL INFO */

.about-professional {
    padding: 100px 0;
    background: #fffdf9;
}

.about-professional-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.about-professional h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 54px);
    line-height: 1.1;
    font-weight: 400;
}

.about-professional-details {
    border-top: 1px solid #ded7cd;
}

.about-professional-details div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid #ded7cd;
}

.about-professional-details span {
    color: #a36a54;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-professional-details strong {
    color: #3f5953;
    font-weight: 500;
}

/* CLOSING */

.about-closing {
    padding: 110px 0;
    background: #174f4a;
}

.about-closing-inner {
    max-width: 860px;
}

.about-closing .therapy-kicker {
    color: #efbd82;
}

.about-closing h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 400;
}

.about-closing p:not(.therapy-kicker) {
    max-width: 640px;
    margin: 26px 0 32px;
    color: #dbe8e3;
    font-size: 18px;
    line-height: 1.72;
}

.about-closing-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-services-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.6);
    font-weight: 600;
}

/* MOBILE */

@media (max-width: 900px) {

    .about-hero-grid,
    .about-identity-grid,
    .about-approach-grid,
    .about-professional-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-photo {
        max-width: 420px;
    }
}

@media (max-width: 600px) {

    .about-page-hero,
    .about-identity,
    .about-approach,
    .about-training,
    .about-professional,
    .about-closing {
        padding: 78px 0;
    }

    .about-hero-heading h1 {
        font-size: 50px;
    }

    .about-hero-intro .about-lead {
        font-size: 25px;
    }

    .about-approach-heading h2,
    .about-training-heading h2,
    .about-professional h2 {
        font-size: 39px;
    }

    .about-quote {
        font-size: 23px;
        padding-left: 22px;
    }

    .about-professional-details div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .about-closing h2 {
        font-size: 42px;
    }

    .about-photo {
        max-width: 100%;
    }
}
/* =========================================
   ASCENZO THERAPY - RESOURCES PAGE
========================================= */

.therapy-resources-page {
    background: #fffdf9;
    color: #29433f;
}

/* HERO */

.resources-hero {
    padding: 105px 0 90px;
    background: #f7ead9;
}

.resources-hero-inner {
    max-width: 850px;
}

.resources-hero h1 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.resources-hero-copy {
    max-width: 700px;
    margin: 26px 0 0;
    color: #5b6a65;
    font-size: 19px;
    line-height: 1.75;
}


/* EMERGENCY NOTICE */

.resources-emergency {
    padding: 48px 0;
    background: #fffdf9;
}

.emergency-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    padding: 36px 40px;
    border-left: 4px solid #c86243;
    background: #f5e7da;
}

.emergency-label {
    display: block;
    margin-bottom: 10px;
    color: #a44f37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.emergency-box h2 {
    margin: 0 0 10px;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
}

.emergency-box p {
    max-width: 650px;
    margin: 0;
    color: #5b6763;
    line-height: 1.7;
}

.emergency-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.emergency-link {
    display: inline-block;
    padding: 12px 18px;
    background: #174f4a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}


/* DIRECTORY */

.resources-directory {
    padding: 95px 0 110px;
    background: #eaf0ec;
}

.resources-directory-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.resources-directory-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
}

.resources-directory-heading p:not(.therapy-kicker) {
    margin: 18px 0 0;
    color: #5d6d68;
    font-size: 17px;
}


/* ACCORDION */

.resource-accordion {
    border-top: 1px solid rgba(23,79,74,.22);
}

.resource-accordion:last-of-type {
    border-bottom: 1px solid rgba(23,79,74,.22);
}

.resource-accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 25px 6px;
    cursor: pointer;
    list-style: none;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.resource-accordion summary::-webkit-details-marker {
    display: none;
}

.resource-plus {
    flex: 0 0 auto;
    color: #a35f47;
    font-family: Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    transition: transform .2s ease;
}

.resource-accordion[open] .resource-plus {
    transform: rotate(45deg);
}

.resource-accordion-content {
    padding: 4px 6px 35px;
}


/* INDIVIDUAL RESOURCES */

.resource-item {
    padding: 22px 0;
    border-top: 1px solid rgba(23,79,74,.12);
}

.resource-item:first-child {
    border-top: 0;
}

.resource-item h3 {
    margin: 0 0 8px;
    color: #35564f;
    font-size: 18px;
    font-weight: 650;
}

.resource-item p {
    max-width: 730px;
    margin: 0 0 10px;
    color: #66736f;
    line-height: 1.7;
}

.resource-item a {
    display: inline-block;
    color: #a3543c;
    text-decoration: none;
    font-weight: 650;
    border-bottom: 1px solid rgba(163,84,60,.4);
}

.resource-item a:hover {
    border-bottom-color: #a3543c;
}


/* BOOKS */

.resources-books {
    padding: 105px 0;
    background: #fffdf9;
}

.resources-books-heading {
    max-width: 720px;
}

.resources-books-heading h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
}

.resources-book-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.resource-book {
    min-height: 225px;
    padding: 26px 22px;
    background: #f3e8d9;
    border-top: 3px solid #c86243;
}

.book-category {
    display: block;
    margin-bottom: 24px;
    color: #9a654f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.resource-book h3 {
    margin: 0 0 12px;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
}

.resource-book p {
    margin: 0;
    color: #66736f;
    line-height: 1.5;
}

.books-disclaimer {
    max-width: 760px;
    margin: 35px 0 0;
    color: #7a7771;
    font-size: 14px;
    line-height: 1.65;
}


/* CLOSING */

.resources-closing {
    padding: 105px 0;
    background: #174f4a;
}

.resources-closing-inner {
    max-width: 800px;
}

.resources-closing .therapy-kicker {
    color: #efbd82;
}

.resources-closing h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 400;
}

.resources-closing p:not(.therapy-kicker) {
    max-width: 620px;
    margin: 24px 0 30px;
    color: #dbe8e3;
    font-size: 18px;
    line-height: 1.7;
}

.resources-closing-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.resources-services-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.6);
    font-weight: 600;
}


/* TABLET */

@media (max-width: 1000px) {

    .resources-book-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .resources-hero,
    .resources-directory,
    .resources-books,
    .resources-closing {
        padding: 75px 0;
    }

    .resources-emergency {
        padding: 32px 0;
    }

    .emergency-box {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 28px 24px;
    }

    .resource-accordion summary {
        font-size: 21px;
        padding: 22px 4px;
    }

    .resources-book-grid {
        grid-template-columns: 1fr;
    }

    .resource-book {
        min-height: auto;
    }

    .resources-hero h1 {
        font-size: 48px;
    }

    .resources-directory-heading h2,
    .resources-books-heading h2 {
        font-size: 39px;
    }

    .resources-closing h2 {
        font-size: 42px;
    }
}
/* =========================================
   RESOURCES PAGE - BOOK SECTION UPDATE
========================================= */

.resources-books-intro {
    max-width: 760px;
    margin: 24px 0 0;
    color: #5f6f6a;
    font-size: 18px;
    line-height: 1.8;
}

.book-category-group {
    margin-top: 58px;
}

.book-category-group > h3 {
    margin: 0 0 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9d2c8;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.resources-book-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.resource-book-new {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 24px;
    align-items: center;
    padding: 26px;
    background: #f6eee4;
    border: 1px solid #e3d7c9;
}

.book-cover-placeholder {
    aspect-ratio: 2 / 3;
    min-height: 205px;
    padding: 18px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #174f4a;
    border: 8px solid #efe4d5;
    box-shadow:
        inset -7px 0 0 rgba(255,255,255,.08),
        0 8px 20px rgba(0,0,0,.08);
}

.book-cover-placeholder span {
    color: #f7ead9;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 1px;
}

.book-information h4 {
    margin: 0 0 10px;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;
}

.book-author {
    margin: 0;
    color: #66736f;
    font-size: 15px;
    line-height: 1.6;
}

.books-disclaimer {
    margin-top: 65px;
    padding: 28px 30px;
    background: #eaf0ec;
    border-left: 3px solid #c86243;
}

.books-disclaimer h3 {
    margin: 0 0 10px;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

.books-disclaimer p {
    margin: 0;
    max-width: 850px;
    color: #5e6d68;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 900px) {

    .resources-book-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .resource-book-new {
        grid-template-columns: 110px 1fr;
        gap: 18px;
        padding: 20px;
    }

    .book-cover-placeholder {
        min-height: 165px;
        border-width: 6px;
    }

    .book-cover-placeholder span {
        font-size: 13px;
    }

    .book-information h4 {
        font-size: 22px;
    }

    .book-category-group > h3 {
        font-size: 24px;
    }
}
/* =========================================
   ASCENZO THERAPY - CONTACT PAGE
========================================= */

.therapy-contact-page {
    background: #fffdf9;
    color: #29433f;
}


/* HERO */

.contact-page-hero {
    padding: 110px 0 100px;
    background: #f7ead9;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.contact-hero-heading h1 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6vw, 76px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.contact-hero-heading h1 em {
    display: block;
    margin-top: 8px;
    color: #8a5c48;
    font-weight: 400;
}

.contact-hero-copy {
    max-width: 680px;
}

.contact-hero-copy p {
    margin: 0 0 24px;
    color: #5b6a65;
    font-size: 18px;
    line-height: 1.8;
}

.contact-hero-copy .contact-lead {
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    line-height: 1.45;
}


/* MAIN CONTACT AREA */

.contact-main {
    padding: 105px 0;
    background: #fffdf9;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: start;
}

.contact-intro h2,
.contact-panel h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.5vw, 54px);
    line-height: 1.1;
    font-weight: 400;
}

.contact-intro p {
    max-width: 580px;
    margin: 24px 0 0;
    color: #5f6e69;
    font-size: 17px;
    line-height: 1.78;
}

.contact-services-link {
    display: inline-block;
    margin-top: 28px;
    color: #a3543c;
    text-decoration: none;
    font-weight: 650;
    border-bottom: 1px solid rgba(163,84,60,.4);
}


/* CONTACT PANEL */

.contact-panel {
    padding: 38px 40px;
    background: #eaf0ec;
    border-top: 4px solid #c86243;
}

.contact-panel-label {
    margin: 0 0 12px;
    color: #a35f47;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.contact-panel h2 {
    font-size: 38px;
}

.contact-panel-intro {
    margin: 18px 0 28px;
    color: #62716c;
    line-height: 1.7;
}

.contact-wordpress-content {
    padding-top: 22px;
    border-top: 1px solid rgba(23,79,74,.18);
}

.contact-wordpress-content p {
    color: #596963;
    line-height: 1.7;
}

.contact-wordpress-content a {
    color: #a3543c;
    font-weight: 650;
}


/* LANGUAGES */

.contact-language {
    padding: 78px 0;
    background: #f3e8d9;
}

.contact-language-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-language h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 400;
}

.contact-language p {
    margin: 0;
    color: #5f6e69;
    font-size: 18px;
    line-height: 1.75;
}


/* SERVICE LINKS */

.contact-service-options {
    padding: 100px 0;
    background: #fffdf9;
}

.contact-service-options h2 {
    margin: 0;
    color: #174f4a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 400;
}

.contact-service-list {
    margin-top: 42px;
    border-top: 1px solid #ded7cd;
}

.contact-service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 4px;
    border-bottom: 1px solid #ded7cd;
    color: #174f4a;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.contact-service-list strong {
    color: #a3543c;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.contact-service-list a:hover {
    padding-left: 10px;
}


/* CLOSING */

.contact-closing {
    padding: 110px 0;
    background: #174f4a;
}

.contact-closing-inner {
    max-width: 800px;
}

.contact-closing .therapy-kicker {
    color: #efbd82;
}

.contact-closing h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 400;
}

.contact-closing p:not(.therapy-kicker) {
    margin: 24px 0 0;
    color: #dbe8e3;
    font-size: 18px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .contact-hero-grid,
    .contact-main-grid,
    .contact-language-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .contact-page-hero,
    .contact-main,
    .contact-service-options,
    .contact-closing {
        padding: 78px 0;
    }

    .contact-language {
        padding: 65px 0;
    }

    .contact-hero-heading h1 {
        font-size: 48px;
    }

    .contact-hero-copy .contact-lead {
        font-size: 25px;
    }

    .contact-panel {
        padding: 28px 24px;
    }

    .contact-panel h2 {
        font-size: 32px;
    }

    .contact-service-list a {
        font-size: 21px;
    }

    .contact-closing h2 {
        font-size: 42px;
    }
}

/* MOBILE TYPOGRAPHY REFINEMENT — phone only */
@media (max-width: 600px) {
    .therapy-hero h1 { font-size: 42px; }
    .therapy-hero-text,
    .therapy-intro-copy p,
    .therapy-services-heading > p:last-child,
    .therapy-about-copy > p:not(.therapy-kicker):not(.therapy-credentials),
    .therapy-closing p:not(.therapy-kicker) { font-size: 16px; }
    .therapy-intro-heading h2,
    .therapy-services-heading h2,
    .therapy-about-copy h2 { font-size: 35px; }
    .therapy-service h3 { font-size: 26px; }
    .therapy-closing h2 { font-size: 39px; }

    .services-page-hero h1 { font-size: 41px; }
    .service-detail-heading h2 { font-size: 34px; }
    .service-detail-copy > p,
    .services-page-closing p:not(.therapy-kicker) { font-size: 16px; }
    .services-page-closing h2 { font-size: 38px; }

    .about-hero-heading h1 { font-size: 44px; }
    .about-hero-intro p,
    .about-approach-copy p,
    .about-closing p:not(.therapy-kicker) { font-size: 16px; }
    .about-hero-intro .about-lead { font-size: 23px; }
    .about-approach-heading h2,
    .about-training-heading h2,
    .about-professional h2 { font-size: 35px; }
    .about-closing h2 { font-size: 38px; }

    .resources-hero h1 { font-size: 42px; }
    .resources-hero-copy,
    .resources-closing p:not(.therapy-kicker) { font-size: 16px; }
    .resources-directory-heading h2,
    .resources-books-heading h2 { font-size: 35px; }
    .resources-closing h2 { font-size: 38px; }
    .resource-accordion summary { font-size: 20px; }

    .contact-hero h1 { font-size: 42px; }
    .contact-hero-text,
    .contact-copy p,
    .contact-closing p:not(.therapy-kicker) { font-size: 16px; }
    .contact-copy h2,
    .contact-closing h2 { font-size: 36px; }
}

