:root {
    --ink: #20251f;
    --green: #73816d;
    --green-dark: #66735f;
    --cream: #fbfaf6;
    --paper: #fbfaf7;
    --line: #e8e3da;
    --muted: #696b66;
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Lato", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f5f3ee;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.cto-shell {
    width: min(100% - 132px, 920px);
    margin-inline: auto;
}

.cto-header,
.cto-hero,
.cto-support,
.cto-about,
.cto-process,
.cto-contact,
.cto-footer,
.cto-page {
    max-width: 1055px;
    margin-inline: auto;
}

.cto-header {
    height: 78px;
    background: rgba(255, 255, 255, 0.96);
    position: relative;
    z-index: 20;
}

.cto-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cto-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 285px;
}

.cto-brand__mark {
    width: 39px;
    height: 49px;
    color: #7c8977;
    display: block;
}

.cto-brand svg,
.cto-footer__mark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cto-brand__words {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.cto-brand__words small {
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.05;
    color: #333;
}

.cto-brand__words strong {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.cto-nav {
    margin-left: auto;
}

.cto-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 26px;
    font-size: 12px;
    color: #252723;
}

.cto-menu li {
    position: relative;
    white-space: nowrap;
}

.cto-menu li.current-menu-item::after,
.home .cto-menu li:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 1px;
    background: #71806b;
}

.cto-menu a {
    transition: color 0.2s ease;
}

.cto-menu a:hover,
.cto-menu a:focus-visible {
    color: var(--green-dark);
}

.cto-nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.cto-nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 24px;
    height: 2px;
    background: #314033;
    margin: 4px;
}

.cto-hero {
    height: 425px;
    background-image: var(--hero);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cto-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 249, 245, 0.08) 0%, rgba(250, 249, 245, 0.03) 48%, rgba(250, 249, 245, 0) 72%);
}

.cto-hero__inner {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
}

.cto-hero__copy {
    width: 450px;
    margin-left: 94px;
    margin-top: 59px;
}

.cto-hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -1.1px;
    font-size: 50px;
    line-height: 1.04;
    margin: 0 0 20px;
    color: #142117;
}

.cto-hero p {
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 355px;
    margin: 0 0 19px;
    color: #232722;
}

.cto-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 21px;
    border: 1px solid var(--green);
    background: var(--green);
    color: #fff;
    border-radius: 3px;
    font-size: 12.5px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.2s ease;
}

.cto-button:hover,
.cto-button:focus-visible {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.cto-support {
    min-height: 280px;
    background: var(--paper);
    padding: 29px 0 21px;
}

.cto-support h2,
.cto-process h2 {
    font-family: var(--serif);
    font-size: 31px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: -0.4px;
}

.cto-support__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cto-support article {
    min-height: 181px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.26);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 10px 10px;
}

.cto-round-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f0eee7;
    color: #7f8c78;
    display: grid;
    place-items: center;
    margin-bottom: 5px;
    flex: 0 0 auto;
}

.cto-round-icon svg,
.cto-service-card__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cto-support h3 {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.08;
    font-weight: 500;
    margin: 0 0 8px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cto-support p {
    font-size: 10.2px;
    line-height: 1.4;
    margin: 0;
    color: #363833;
}

.cto-support__more {
    text-align: center;
    font-size: 10px !important;
    margin: 10px 0 0 !important;
}

.cto-support__more a {
    color: var(--green-dark);
    border-bottom: 1px solid rgba(102, 115, 95, 0.4);
}

.cto-about {
    height: 276px;
    background: var(--paper);
}

.cto-about__grid {
    height: 100%;
    display: grid;
    grid-template-columns: 450px 1fr;
    background: var(--paper);
    border-radius: 5px;
    overflow: hidden;
}

.cto-about__photo {
    height: 274px;
}

.cto-about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cto-about__copy {
    padding: 21px 33px 14px 34px;
    background: linear-gradient(135deg, #fff 0%, #faf8f4 100%);
}

.cto-about__copy h2 {
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 17px;
}

.cto-about__copy p {
    font-size: 10.8px;
    line-height: 1.48;
    margin: 0 0 14px;
    color: #3d3f3a;
}

.cto-button--outline {
    background: transparent;
    color: #333;
    border-color: #8e9789;
    min-height: 34px;
    padding: 0 17px;
    font-size: 10.8px;
}

.cto-button--outline:hover,
.cto-button--outline:focus-visible {
    color: #fff;
}

.cto-process {
    min-height: 180px;
    background: var(--paper);
    padding: 24px 0 22px;
}

.cto-process h2 {
    margin-bottom: 17px;
}

.cto-process__row {
    display: grid;
    grid-template-columns: 1fr 40px 1.26fr 40px 1fr;
    align-items: center;
}

.cto-process article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: start;
}

.cto-process__icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f0eee7;
    color: #7b8875;
    display: grid;
    place-items: center;
}

.cto-process__icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cto-process__icon b {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f5f1e9;
    border: 1px solid #e2ddd4;
    color: #555;
    font: 600 10px/19px var(--sans);
    text-align: center;
}

.cto-process h3 {
    font-family: var(--serif);
    font-size: 16.5px;
    line-height: 1.1;
    font-weight: 500;
    margin: 8px 0 7px;
}

.cto-process p {
    font-size: 9.2px;
    line-height: 1.48;
    margin: 0;
    color: #3b3d38;
}

.cto-arrow {
    text-align: center;
    color: #7f8d78;
    font-size: 27px;
    font-family: Georgia, serif;
    margin-top: -3px;
}

.cto-contact {
    min-height: 140px;
    background: var(--paper);
}

.cto-contact__card {
    min-height: 140px;
    border: 1px solid #ded8ce;
    border-radius: 7px;
    background: #f8f5ee;
    overflow: hidden;
    display: grid;
    grid-template-columns: 226px 274px 1fr 191px;
    align-items: stretch;
}

.cto-contact__image {
    background-image: linear-gradient(90deg, rgba(248, 245, 238, 0), rgba(248, 245, 238, 0.78)), var(--cta);
    background-size: cover;
    background-position: left center;
}

.cto-contact__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cto-contact__intro h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.04;
    margin: 0 0 10px;
}

.cto-contact__intro p {
    font-size: 11px;
    margin: 0;
}


.cto-contact__intro--without-title {
    display: flex;
    align-items: center;
}

.cto-contact__intro--without-title p {
    margin: 0;
}
.cto-contact__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding-left: 8px;
}

.cto-contact__details a,
.cto-contact__details p {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 9.8px;
    margin: 0;
    color: #41433f;
}

.cto-contact__details svg,
.cto-contact-panel svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #6d7d69;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.cto-contact__action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
    padding-right: 22px;
}

.cto-contact__action .cto-button {
    width: 132px;
    height: 39px;
    padding: 0;
}

.cto-contact__action small {
    font-size: 9px;
    color: #666;
    white-space: nowrap;
}

.cto-footer {
    height: 113px;
    background: var(--paper);
}

.cto-footer__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    font-size: 9px;
    color: #666;
}

.cto-footer__mark {
    width: 33px;
    height: 43px;
    color: #7d8978;
}

.cto-footer p {
    text-align: center;
    margin: 0;
}

.cto-footer__links {
    text-align: right;
}

.cto-footer a:hover,
.cto-footer a:focus-visible {
    text-decoration: underline;
}

/* Subpages */
.cto-page {
    min-height: 650px;
    padding: 64px 0 78px;
    background: var(--paper);
}

.cto-page__article {
    max-width: 920px;
    margin: auto;
}

.cto-page__header {
    max-width: 760px;
    margin-bottom: 40px;
}

.cto-page__header--center {
    text-align: center;
    margin-inline: auto;
}

.cto-page h1 {
    font: 500 52px/1.05 var(--serif);
    letter-spacing: -0.5px;
    margin: 0 0 24px;
}

.cto-page h2 {
    font: 500 30px/1.15 var(--serif);
    margin: 36px 0 14px;
}

.cto-page__content,
.cto-page__lead {
    font-size: 16px;
    line-height: 1.75;
}

.cto-page__content p,
.cto-page__lead p {
    margin: 0 0 18px;
}

.cto-page__content ul,
.cto-page__content ol {
    padding-left: 22px;
}

.cto-eyebrow {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin: 0 0 10px;
}

.cto-profile-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 54px;
    align-items: start;
}

.cto-profile-layout__photo {
    border-radius: 6px;
    overflow: hidden;
    background: #eee9e1;
}

.cto-profile-layout__photo img {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: cover;
}

.cto-profile-layout .cto-page__content h2:first-child {
    margin-top: 0;
}

.cto-service-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cto-service-card {
    position: relative;
    padding: 30px 30px 27px 86px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.45);
}

.cto-service-card__icon {
    position: absolute;
    left: 24px;
    top: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f0eee7;
    color: var(--green);
}

.cto-service-card__icon svg {
    width: 27px;
    height: 27px;
}

.cto-service-card h2 {
    font-size: 25px;
    margin: 0 0 13px;
}

.cto-service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cto-service-card li {
    position: relative;
    padding: 5px 0 5px 17px;
    font-size: 14px;
    line-height: 1.45;
}

.cto-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 1px;
    background: var(--green);
}

.cto-page-cta {
    margin-top: 34px;
    padding: 28px 34px;
    border-radius: 6px;
    background: #eef0e9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cto-page-cta h2 {
    margin: 0 0 7px;
}

.cto-page-cta p:last-child {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
}

.cto-page-cta .cto-button {
    flex: 0 0 auto;
}

.cto-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cto-price-card {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.48);
    text-align: center;
}

.cto-price-card h2 {
    font-size: 25px;
    margin: 0 0 16px;
}

.cto-price-card__price {
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.cto-price-card p:last-child {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.cto-note-box {
    margin-top: 28px;
    padding: 24px 30px;
    border-left: 3px solid var(--green);
    background: #f2f0ea;
}

.cto-note-box h2 {
    margin: 0 0 8px;
    font-size: 25px;
}

.cto-note-box p {
    margin: 0;
}

.cto-contact-page__grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
}

.cto-contact-panel,
.cto-form-panel {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.48);
    padding: 34px;
}

.cto-contact-panel h2,
.cto-form-panel h2 {
    margin: 0 0 24px;
}

.cto-contact-panel > a,
.cto-contact-panel > p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 18px;
    font-size: 14px;
}

.cto-contact-panel svg {
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.cto-contact-panel__note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.cto-contact-panel__note h3 {
    font: 500 22px/1.2 var(--serif);
    margin: 0 0 8px;
}

.cto-contact-panel__note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.cto-contact-form {
    display: grid;
    gap: 16px;
}

.cto-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cto-contact-form label {
    display: grid;
    gap: 7px;
    font-size: 12px;
    color: #3f423d;
}

.cto-contact-form label > span:not(.screen-reader-text) {
    color: inherit;
}

.cto-contact-form label > span:first-of-type {
    display: inline;
}

.cto-contact-form input[type="text"],
.cto-contact-form input[type="email"],
.cto-contact-form input[type="tel"],
.cto-contact-form textarea {
    width: 100%;
    border: 1px solid #d9d4cb;
    border-radius: 3px;
    background: #fff;
    color: var(--ink);
    padding: 11px 12px;
    outline: none;
}

.cto-contact-form textarea {
    resize: vertical;
}

.cto-contact-form input:focus,
.cto-contact-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(115, 129, 109, 0.12);
}

.cto-consent {
    display: grid !important;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px !important;
    line-height: 1.45;
}

.cto-consent input {
    margin: 3px 0 0;
}

.cto-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.cto-form-message {
    padding: 12px 14px;
    border-radius: 3px;
    margin-bottom: 16px;
    font-size: 13px;
}

.cto-form-message--success {
    background: #e9f1e7;
    color: #335034;
}

.cto-form-message--error {
    background: #f5e9e7;
    color: #6a342e;
}

@media (max-width: 900px) {
    .cto-shell {
        width: min(100% - 40px, 760px);
    }

    .cto-header {
        height: 72px;
    }

    .cto-brand {
        min-width: 0;
    }

    .cto-brand__words strong {
        font-size: 25px;
    }

    .cto-nav-toggle {
        display: block;
    }

    .cto-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        padding: 12px 20px 22px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .cto-nav.is-open {
        display: block;
    }

    .cto-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .cto-menu a {
        display: flex;
        padding: 12px 4px;
        border-bottom: 1px solid #eee;
    }

    .cto-menu li.current-menu-item::after,
    .home .cto-menu li:first-child::after {
        display: none;
    }

    .cto-hero {
        height: 560px;
        background-position: 62% center;
    }

    .cto-hero__veil {
        background: linear-gradient(180deg, rgba(250, 249, 245, 0.95) 0%, rgba(250, 249, 245, 0.88) 48%, rgba(250, 249, 245, 0.12) 78%);
    }

    .cto-hero__copy {
        margin: 45px 0 0;
        width: 100%;
        max-width: 540px;
    }

    .cto-hero h1 {
        font-size: 46px;
    }

    .cto-support {
        padding: 42px 0;
    }

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

    .cto-about {
        height: auto;
    }

    .cto-about__grid {
        grid-template-columns: 1fr;
    }

    .cto-about__photo {
        height: 420px;
    }

    .cto-about__copy {
        padding: 38px;
    }

    .cto-process {
        padding: 42px 0;
    }

    .cto-process__row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cto-process article {
        grid-template-columns: 72px 1fr;
    }

    .cto-process p {
        font-size: 11px;
    }

    .cto-arrow {
        display: none;
    }

    .cto-contact {
        padding: 20px 0;
    }

    .cto-contact__card {
        grid-template-columns: 180px 1fr;
        min-height: 300px;
    }

    .cto-contact__image {
        grid-row: 1 / 3;
    }

    .cto-contact__intro {
        padding: 30px;
    }

    .cto-contact__details {
        padding: 0 30px 30px;
    }

    .cto-contact__action {
        grid-column: 1 / -1;
        padding: 20px 30px;
        border-top: 1px solid #ded8ce;
    }

    .cto-footer {
        height: 100px;
    }

    .cto-profile-layout,
    .cto-contact-page__grid {
        grid-template-columns: 1fr;
    }

    .cto-profile-layout__photo {
        max-width: 540px;
    }

    .cto-service-groups,
    .cto-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cto-pricing-grid .cto-price-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .cto-shell {
        width: min(100% - 28px, 520px);
    }

    .cto-brand__words small {
        font-size: 11px;
    }

    .cto-brand__words strong {
        font-size: 21px;
    }

    .cto-brand__mark {
        width: 32px;
        height: 42px;
    }

    .cto-hero {
        height: 590px;
        background-position: 70% center;
    }

    .cto-hero__copy {
        margin-top: 38px;
    }

    .cto-hero h1 {
        font-size: 41px;
        line-height: 1.02;
    }

    .cto-hero p {
        font-size: 14px;
        max-width: 310px;
    }

    .cto-support h2,
    .cto-process h2 {
        font-size: 30px;
    }

    .cto-support__grid {
        grid-template-columns: 1fr;
    }

    .cto-support article {
        min-height: 190px;
        padding: 20px;
    }

    .cto-about__photo {
        height: 330px;
    }

    .cto-about__copy {
        padding: 30px 24px;
    }

    .cto-process article {
        grid-template-columns: 62px 1fr;
    }

    .cto-process__icon {
        width: 58px;
        height: 58px;
    }

    .cto-contact__card {
        grid-template-columns: 1fr;
    }

    .cto-contact__image {
        height: 150px;
        grid-row: auto;
    }

    .cto-contact__intro {
        padding: 25px 25px 12px;
    }

    .cto-contact__details {
        padding: 10px 25px 25px;
    }

    .cto-contact__action {
        grid-column: auto;
    }

    .cto-footer__inner {
        grid-template-columns: auto 1fr;
    }

    .cto-footer p {
        text-align: right;
    }

    .cto-footer__links {
        display: none;
    }

    .cto-page {
        padding: 46px 0 60px;
    }

    .cto-page h1 {
        font-size: 42px;
    }

    .cto-page__header {
        margin-bottom: 30px;
    }

    .cto-page__content,
    .cto-page__lead {
        font-size: 15px;
    }

    .cto-service-groups,
    .cto-pricing-grid {
        grid-template-columns: 1fr;
    }

    .cto-pricing-grid .cto-price-card:last-child {
        grid-column: auto;
    }

    .cto-service-card {
        padding: 28px 24px 26px 78px;
    }

    .cto-service-card__icon {
        left: 20px;
        top: 28px;
    }

    .cto-page-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

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

    .cto-contact-panel,
    .cto-form-panel {
        padding: 26px 22px;
    }
}

.cto-contact-form label > span {
    display: block;
}

.cto-contact-form label em {
    color: #8a4f49;
    font-style: normal;
}

/* Client content v4 */
.cto-page__article--wide {
    max-width: 1040px;
}

.cto-home-intro {
    padding: 58px 0 36px;
    background: #faf8f3;
}

.cto-home-intro__content {
    max-width: 1050px;
}

.cto-home-intro__content > p:first-child {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.cto-home-intro__content h2 {
    max-width: 780px;
    margin: 0 auto 26px;
    text-align: center;
    font: 500 28px/1.2 var(--serif);
}

.cto-topic-list {
    list-style: none;
    columns: 4;
    column-gap: 34px;
    padding: 0;
    margin: 0 auto 28px;
    max-width: 1040px;
}

.cto-topic-list li {
    position: relative;
    break-inside: avoid;
    padding: 7px 0 7px 18px;
    font-size: 14px;
    line-height: 1.45;
}

.cto-topic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(105, 118, 89, .45);
}

.cto-home-intro__closing {
    max-width: 820px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.cto-longform {
    font-size: 16px;
    line-height: 1.78;
}

.cto-longform > p {
    max-width: 840px;
    margin: 0 auto 20px;
}

.cto-offer-intro {
    text-align: center;
    padding: 20px 24px;
    background: #eef0e9;
    border-radius: 6px;
}

.cto-offer-copy-section {
    margin: 24px 0;
    padding: 34px 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255,255,255,.5);
}

.cto-offer-copy-section h2 {
    margin-top: 0;
    color: var(--ink);
}

.cto-offer-copy-section p {
    max-width: none;
}

.cto-odyssey-quote {
    margin: 28px 0;
    padding: 25px 30px;
    border-left: 3px solid var(--green);
    background: #f2f0ea;
    font: 500 22px/1.45 var(--serif);
    color: #3c4039;
}

.cto-english-link {
    margin-top: 26px !important;
    padding: 20px 24px;
    text-align: center;
    background: #eef0e9;
    border-radius: 6px;
}

.cto-qualifications {
    list-style: none;
    padding: 0 !important;
    margin: 10px 0 0;
}

.cto-qualifications li {
    padding: 4px 0;
    line-height: 1.45;
    border-bottom: 1px solid var(--line);
}

.cto-pricing-content > .cto-pricing-grid,
.cto-pricing-content > .cto-note-box {
    max-width: none;
}

.cto-pricing-content .cto-note-box p + p {
    margin-top: 10px;
}

.cto-contact-panel small {
    color: #77796f;
    font-size: 11px;
}

.cto-english-content {
    max-width: 940px;
    margin: 0 auto;
    text-align: left;
}

.cto-english-content .cto-english-section {
    margin: 0 0 24px;
}

.cto-english-content .cto-english-section h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.cto-english-content .cto-english-section h3 {
    margin: 28px 0 10px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
}

.cto-english-issues {
    columns: 2;
    column-gap: 44px;
    margin: 20px 0 24px;
    padding-left: 20px;
}

.cto-english-issues li {
    break-inside: avoid;
    margin: 0 0 8px;
}

.cto-english-qualifications strong {
    font-weight: 600;
}

.cto-english-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cto-english-steps {
    margin: 20px 0 0;
    padding-left: 24px;
}

.cto-english-steps li {
    margin: 0 0 22px;
    padding-left: 8px;
}

@media (max-width: 900px) {
    .cto-topic-list {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .cto-home-intro {
        padding: 42px 0 26px;
    }

    .cto-home-intro__content > p:first-child {
        text-align: left;
        font-size: 16px;
    }

    .cto-home-intro__content h2 {
        text-align: left;
        font-size: 29px;
    }

    .cto-topic-list {
        columns: 1;
    }

    .cto-english-issues {
        columns: 1;
    }

    .cto-english-pricing {
        grid-template-columns: 1fr;
    }

    .cto-offer-copy-section {
        padding: 26px 22px;
    }

    .cto-odyssey-quote {
        margin: 22px 0;
        padding: 22px;
        font-size: 20px;
    }
}


/* Client corrections v5 */
@media (max-width: 900px) {
    .cto-topic-list {
        columns: 2;
    }
}

@media (max-width: 620px) {
    .cto-topic-list {
        columns: 1;
    }

    .cto-home-intro__content h2 {
        font-size: 25px;
    }
}
