/* ---------- Color and spacing variables ---------- */

:root {
    --dark-green: #173d2b;
    --green: #587443;
    --medium-green: #78945d;
    --light-green: #a9c46c;
    --hover-green: #c4db8b;

    --cream: #f2f0e7;
    --text: #1f3428;
    --muted-text: #2d4436;
    --light-text: #46594d;
    --border: #bdc7bc;

    --section-spacing: 50px;
    --card-spacing: 35px;
}

/* ---------- Global styles ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;

    background:
        linear-gradient(rgb(10 35 24 / 18%), rgb(10 35 24 / 28%)),
        url("images/pacific-background.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-container {
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: 40px clamp(30px, 5vw, 70px);

    background-color: rgb(242 240 231 / 66%);
    box-shadow: 0 0 45px rgb(0 0 0 / 22%);
    backdrop-filter: blur(3px);
}

a {
    text-decoration: none;
}

.page-container p {
    max-width: 900px;
    line-height: 1.6;
}

/* Shared spacing for major sections */

.about-section,
.services-section,
.pricing-section,
.contact-section {
    padding: var(--section-spacing) 0;
}

/* Shared section labels */

.section-label,
.card-label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label {
    color: var(--green);
}

.card-label {
    font-size: 0.75rem;
    opacity: 0.75;
}

/* Shared section headings */

.about-content h2,
.services-heading h2,
.pricing-heading h2,
.contact-intro h2 {
    color: var(--dark-green);
}

.services-heading h2,
.pricing-heading h2,
.contact-intro h2 {
    margin: 8px 0 16px;
    font-size: 2.8rem;
}

/* Shared body text */

.about-content p,
.about-content li,
.services-heading>p:last-child,
.pricing-heading>p:last-child,
.contact-intro>p {
    color: var(--muted-text);
    line-height: 1.7;
}

/* ---------- Navigation ---------- */

.site-header {
    padding: 18px 0;
    color: white;
    background-color: var(--dark-green);
}

.navbar {
    width: min(90%, 1100px);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.site-logo span {
    color: var(--light-green);
}

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

.nav-links a {
    color: white;
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--hover-green);
}

.nav-button {
    padding: 10px 16px;
    color: var(--dark-green) !important;
    background-color: var(--light-green);
    border-radius: 5px;
}

.nav-button:hover {
    background-color: var(--hover-green);
}

/* ---------- Hero section ----------- */

.hero-section {
    max-width: 850px;
    padding: 60px 0 45px;
}

.hero-section h1 {
    margin: 8px 0 12px;
    color: var(--dark-green);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -3px;
}

.hero-section h2 {
    max-width: 750px;
    margin: 0 0 28px;
    color: var(--green);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.3;
}

.hero-intro {
    max-width: 750px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.primary-button,
.secondary-button {
    padding: 14px 20px;
    font-weight: bold;
}

.primary-button {
    color: white;
    background-color: var(--dark-green);
}

.primary-button:hover {
    background-color: var(--green);
}

.secondary-button {
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.secondary-button:hover {
    background-color: rgb(23 61 43 / 10%);
}

/* ---------- About section ---------- */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 60px;
    row-gap: 45px;
}

.about-photo {
    position: relative;
    isolation: isolate;
}

.about-photo::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: -1;

    width: 100%;
    height: 100%;
    background-color: var(--green);
}

.about-photo img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
}

.about-content h2 {
    margin: 8px 0 24px;
    font-size: 2.5rem;
}

.about-content p,
.about-content li {
    font-size: 1.05rem;
}

.about-content ul {
    padding-left: 22px;
}

.about-content li {
    margin-bottom: 8px;
}

.site-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

/* ---------- Services section ---------- */

.services-heading {
    max-width: 700px;
    margin-bottom: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    padding: var(--card-spacing);
    background-color: var(--cream);
    border-top: 5px solid var(--green);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgb(23 61 43 / 15%);
}

.service-number {
    color: var(--medium-green);
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
}

.service-card h3 {
    margin: 11px 0;
    color: var(--dark-green);
    font-size: 1.35rem;
    text-transform: uppercase;
}

.service-card p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.6;
}

.service-card ul {
    margin: 18px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid #ccd2c7;
    list-style: none;
}

.service-card li {
    margin: 7px 0;
    color: var(--text);
}

.service-card li::before {
    content: "→";
    margin-right: 10px;
    color: var(--medium-green);
    font-weight: bold;
}

/* ---------- Pricing section ---------- */

.pricing-heading {
    max-width: 650px;
    margin-bottom: 32px;
}

.pricing-heading h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pricing-card {
    min-height: 480px;
    padding: 36px;
    background-color: var(--cream);
    border: 1px solid #ccd2c7;

    display: flex;
    flex-direction: column;
}

.featured-card {
    color: white;
    background-color: var(--green);
    border-color: var(--green);
}

.pricing-card h3 {
    margin: 12px 0 30px;
    font-size: 1.7rem;
    text-transform: uppercase;
}

.price {
    margin: 0 0 30px;
    font-size: 4rem;
    font-weight: bold;
}

.dollar {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-unit {
    font-size: 0.85rem;
    font-weight: normal;
}

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

.pricing-card li {
    padding: 14px 0;
    border-top: 1px solid rgb(255 255 255 / 25%);
}

.pricing-button {
    margin-top: auto;
    padding: 15px 18px;

    color: var(--dark-green);
    background-color: white;
    font-weight: bold;
    text-align: center;
}

.pricing-button:hover {
    background-color: #dce8c0;
}

.package-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 0;
    border-top: 1px solid #bbc3b7;
}

.package-row div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.package-row small,
.pricing-note {
    color: var(--light-text);
}

.package-row>span {
    color: var(--green);
    font-size: 1.4rem;
    font-weight: bold;
}

.pricing-note {
    margin-top: auto;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ---------- Contact section ---------- */

.contact-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-intro h2 {
    margin-bottom: 24px;
}

.contact-details {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #bbc5ba;
}

.contact-details p {
    margin: 6px 0;
}

.contact-form {
    padding: 40px;
    background-color: var(--cream);
    border-top: 5px solid var(--green);
}

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

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;

    color: var(--dark-green);
    font-size: 0.85rem;
    font-weight: bold;
}

.form-group label span {
    color: #718077;
    font-weight: normal;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    color: var(--dark-green);
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 0;
    font: inherit;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    outline: 3px solid rgb(88 116 67 / 15%);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 24px;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group input {
    margin-top: 3px;
    accent-color: var(--green);
}

.submit-button {
    width: 100%;
    padding: 16px 20px;

    display: flex;
    justify-content: space-between;

    color: white;
    background-color: var(--dark-green);
    border: none;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #295941;
}

.form-note {
    margin: 14px 0 0;
    color: #718077;
    font-size: 0.75rem;
    text-align: center;
}

/* ---------- Mobile layout ---------- */

@media (max-width: 750px) {
    :root {
        --section-spacing: 35px;
        --card-spacing: 28px;
    }

    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .about-section,
    .services-grid,
    .pricing-grid,
    .contact-section,
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-section {
        row-gap: 35px;
    }

    .about-photo img {
        height: 350px;
    }

    .about-photo::before {
        top: 10px;
        left: 10px;
    }

    .about-content h2 {
        font-size: 2.3rem;
    }

    .pricing-card {
        min-height: 430px;
    }

    .contact-section {
        gap: 40px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .form-row {
        gap: 0;
    }

    body {
        background-attachment: scroll;
        background-position: center top;
    }

    .page-container {
        width: 94%;
        padding: 30px 20px;
    }
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    min-height: 24px;
    margin: 14px 0 0;
    font-weight: bold;
    text-align: center;
}

.form-status.success {
    color: #245b35;
}

.form-status.error {
    color: #8a2626;
}

.site-footer {
    width: 100%;
    margin-top: 40px;
    padding: 24px;
  
    color: white;
    background-color: var(--dark-green);
    text-align: center;
  }
  
  .site-footer p {
    max-width: none;
    margin: 0;
    color: white;
    font-size: 0.85rem;
  }
  
  .site-footer strong {
    color: var(--light-green);
  }


  .quick-contact {
    max-width: 780px;
    margin: 28px auto 0;
    padding: 26px 24px;
    color: white;
    background-color: #173d2b;
    text-align: center;
}

.quick-contact .section-label {
    margin: 0;
    color: #c4db8b;
}

.quick-contact h2 {
    margin: 8px 0 16px;
    color: white;
    font-size: 1.85rem;
}

.quick-contact > p:not(.section-label) {
    max-width: 560px;
    margin: 0 auto 14px;
    color: #edf2e7;
    line-height: 1.6;
}

.phone-contact {
    margin: 14px 0;
    text-align: center;
}

.phone-contact p {
    margin: 0 0 8px;
    color: #dce8c0;
    font-weight: bold;
}

.phone-contact a {
    color: white;
    font-size: 1.35rem;
    font-weight: bold;
    text-decoration: none;
}

.phone-contact a:hover {
    color: #c4db8b;
}

.quick-contact-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-block;
    padding: 11px 18px;
    color: #173d2b;
    background-color: #a9c46c;
    border: 2px solid #a9c46c;
    font-weight: bold;
    text-decoration: none;
}

.contact-button:hover {
    color: #173d2b;
    background-color: #c4db8b;
    border-color: #c4db8b;
}

.contact-button-outline {
    color: white;
    background-color: transparent;
    border-color: white;
}

.contact-button-outline:hover {
    color: #173d2b;
    background-color: white;
    border-color: white;
}

@media (max-width: 600px) {
    .quick-contact {
        margin: 24px auto 0;
        padding: 24px 18px;
    }

    .quick-contact h2 {
        font-size: 1.65rem;
    }

    .phone-contact a {
        font-size: 1.25rem;
    }

    .quick-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-button {
        width: 100%;
        box-sizing: border-box;
    }
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}

.site-logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-logo-text {
    display: inline-flex;
    gap: 0.35rem;
    align-items: baseline;
}

.site-logo-text strong {
    color: var(--green, #164b35);
}

@media (max-width: 600px) {
    .site-logo-image {
        width: 38px;
        height: 38px;
    }

    .site-logo-text {
        font-size: 0.9rem;
    }
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}

.site-logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;

    /* Makes the logo white against the green navbar */
    filter: brightness(0) invert(1);
}

.site-logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
}

@media (max-width: 600px) {
    .site-logo-image {
        width: 42px;
        height: 42px;
    }

    .site-logo-text {
        font-size: 0.9rem;
    }
}

/* ---------- Compact online and hybrid coaching pricing ---------- */

.online-coaching-section .pricing-grid {
    align-items: stretch;
}

.coaching-intro-card {
    min-width: 0;
    min-height: 0;
}

.coaching-heading > p:last-child {
    max-width: 720px;
}

.coaching-intro-card > p:not(.card-label) {
    margin: 0 0 24px;
}

.coaching-benefits {
    display: grid;
    gap: 12px;
    margin: 2px 0 26px;
    padding: 20px 0;
    border-top: 1px solid rgb(255 255 255 / 28%);
    border-bottom: 1px solid rgb(255 255 255 / 28%);
    list-style: none;
}

.coaching-benefits li {
    position: relative;
    padding-left: 26px;
    line-height: 1.5;
}

.coaching-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hover-green);
    font-weight: bold;
}

.coaching-intro-card .card-label {
    font-size: 0.875rem;
}

.online-coaching-card {
    min-width: 0;
    min-height: 0;
    color: var(--dark-green);
}

.online-coaching-card .card-label,
.online-coaching-card .package-row small {
    font-size: 0.875rem;
}

.online-coaching-card .package-row {
    gap: 16px;
    padding: 18px 0;
}

.online-coaching-card .package-row > span {
    flex-shrink: 0;
    text-align: right;
}

.online-coaching-card .package-row > span small {
    display: block;
    font-weight: normal;
}

.coaching-option > div {
    min-width: 0;
}

.coaching-option small {
    max-width: 290px;
    line-height: 1.45;
}

.hybrid-contact-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--dark-green);
    font-weight: bold;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.coaching-intro-card .pricing-button:focus-visible {
    outline: 3px solid white;
    outline-offset: 4px;
}

@media (max-width: 750px) {
    .coaching-intro-card,
    .online-coaching-card {
        padding: 28px 22px;
    }
}

@media (max-width: 360px) {
    .online-coaching-card .package-row {
        flex-wrap: wrap;
    }

    .online-coaching-card .package-row > span {
        text-align: left;
    }
}

/* ---------- Stripe online coaching checkout ---------- */

.checkout-form {
    margin-top: 4px;
    padding: 20px 0 24px;
    border-bottom: 1px solid #bbc3b7;
}

.coupon-field {
    display: grid;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--dark-green);
    font-size: 0.85rem;
    font-weight: bold;
}

.coupon-field span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.coupon-field small {
    color: var(--light-text);
    font-weight: normal;
}

.coupon-field input {
    width: 100%;
    padding: 13px 14px;
    color: var(--dark-green);
    background: white;
    border: 1px solid #bbc3b7;
    border-radius: 0;
    font: inherit;
    text-transform: uppercase;
}

.coupon-field input:focus {
    border-color: var(--green);
    outline: 3px solid rgb(88 116 67 / 15%);
}

.checkout-button {
    width: 100%;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background-color: var(--dark-green);
    border: 0;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.checkout-button:hover {
    background-color: #295941;
}

.checkout-button:focus-visible {
    outline: 3px solid var(--medium-green);
    outline-offset: 3px;
}

.checkout-button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.checkout-note,
.checkout-status,
.hybrid-label {
    font-size: 0.875rem;
}

.checkout-note {
    margin: 10px 0 0;
    color: var(--light-text);
}

.checkout-status {
    min-height: 1.4em;
    margin: 8px 0 0;
    color: var(--green);
    font-weight: bold;
}

.checkout-status.error {
    color: #8a2626;
}

.hybrid-label {
    margin: 24px 0 8px;
    color: var(--dark-green);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-result-page {
    min-height: calc(100vh - 93px);
    display: grid;
    place-items: center;
}

.checkout-result {
    width: min(100%, 680px);
    margin: 40px auto;
    padding: clamp(34px, 7vw, 64px);
    color: var(--text);
    background-color: rgb(242 240 231 / 92%);
    border-top: 7px solid var(--green);
    box-shadow: 0 18px 50px rgb(0 0 0 / 20%);
}

.checkout-result h1 {
    margin: 10px 0 20px;
    color: var(--dark-green);
    font-size: clamp(2.3rem, 7vw, 4rem);
    line-height: 1;
}

.checkout-result p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.checkout-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .checkout-result-page {
        min-height: auto;
    }

    .checkout-result {
        margin: 20px auto;
    }

    .checkout-result-actions {
        flex-direction: column;
    }

    .checkout-result-actions a {
        text-align: center;
    }
}


/* ---------- Photo-led services ---------- */

.service-card {
    padding: 0;
    overflow: hidden;
}

.service-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--dark-green);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(23 61 43 / 25%), transparent 55%);
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.045);
}

.service-card-content {
    padding: 27px;
}

/* ---------- Dedicated assessment page ---------- */

.assessment-page {
    min-height: calc(100vh - 190px);
}

.assessment-hero {
    max-width: 820px;
    padding: clamp(55px, 8vw, 95px) 0 20px;
}

.assessment-hero h1 {
    margin: 10px 0 20px;
    color: var(--dark-green);
    font-size: clamp(2.7rem, 7vw, 5rem);
    line-height: 1;
}

.assessment-hero > p:last-child {
    max-width: 720px;
    color: var(--text);
    font-size: 1.08rem;
}

.assessment-contact {
    padding-top: 35px;
}

.assessment-benefits {
    display: grid;
    gap: 15px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.assessment-benefits li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    line-height: 1.55;
}

.assessment-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.contact-details a {
    color: var(--dark-green);
    font-size: 1.15rem;
    font-weight: bold;
}

/* ---------- Testimonials ---------- */

.testimonials-section {
    padding: var(--section-spacing) 0;
}

.testimonials-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.testimonials-heading h2 {
    margin: 8px 0 16px;
    color: var(--dark-green);
    font-size: clamp(2.2rem, 5vw, 3rem);
}

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

.testimonial-card {
    margin: 0;
    padding: 32px;
    background: var(--cream);
    border-top: 5px solid var(--green);
    box-shadow: 0 10px 28px rgb(23 61 43 / 10%);
}

.featured-testimonial {
    color: white;
    background: var(--dark-green);
    border-color: var(--light-green);
}

.testimonial-stars {
    color: #78945d;
    letter-spacing: 4px;
}

.featured-testimonial .testimonial-stars {
    color: var(--light-green);
}

.testimonial-card blockquote {
    margin: 22px 0 26px;
    color: var(--text);
    font-family: Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.7;
}

.featured-testimonial blockquote {
    color: white;
}

.testimonial-card figcaption {
    color: var(--light-text);
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.featured-testimonial figcaption {
    color: #dce8c0;
}

.testimonial-disclaimer {
    margin: 18px 0 0;
    color: var(--light-text);
    font-size: 0.75rem;
    text-align: right;
}

@media (max-width: 850px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .assessment-hero {
        padding-top: 45px;
    }

    .service-image {
        height: 230px;
    }

    .testimonial-card {
        padding: 26px 22px;
    }

    .testimonial-disclaimer {
        text-align: left;
    }
}


/* ---------- Investment page and homepage preview ---------- */

.investment-preview {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 48px;
    align-items: center;
    padding: 46px;
    background: linear-gradient(135deg, rgb(242 240 231 / 96%), rgb(220 232 192 / 92%));
    border-left: 6px solid var(--green);
}

.investment-preview h2,
.investment-message h2,
.investment-cta h2 {
    margin: 8px 0 18px;
}

.investment-preview-copy p:not(.section-label) {
    max-width: 680px;
}

.investment-preview-action {
    padding: 30px;
    color: white;
    background-color: var(--dark-green);
}

.investment-preview-action .primary-button {
    display: block;
    margin: 22px 0 14px;
    color: var(--dark-green);
    background-color: var(--light-green);
    text-align: center;
}

.investment-preview-action small {
    display: block;
    color: #edf2e7;
    line-height: 1.5;
}

.investment-kicker {
    margin: 0;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.45;
}

.investment-page {
    padding-top: 0;
}

.investment-hero {
    margin-inline: calc(50% - 50vw);
    padding: 80px max(5vw, calc((100vw - 1080px) / 2));
    color: white;
    background:
        linear-gradient(rgb(23 61 43 / 88%), rgb(23 61 43 / 76%)),
        url("/images/pacific-background.png") center / cover;
}

.investment-hero .section-label {
    color: var(--hover-green);
}

.investment-hero h1 {
    max-width: 900px;
    margin: 10px 0 24px;
    color: white;
    font-size: clamp(3rem, 7vw, 5.25rem);
    line-height: 0.98;
}

.investment-lead {
    max-width: 780px;
    color: white;
    font-size: 1.15rem;
    line-height: 1.75;
}

.investment-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 38px;
}

.investment-principles div {
    padding: 22px;
    background-color: rgb(255 255 255 / 11%);
    border: 1px solid rgb(255 255 255 / 25%);
}

.investment-principles strong,
.investment-principles span {
    display: block;
}

.investment-principles strong {
    color: var(--hover-green);
    font-size: 1.15rem;
}

.investment-principles span {
    margin-top: 7px;
    color: white;
    line-height: 1.45;
}

.investment-message {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding: 48px;
    background-color: rgb(242 240 231 / 93%);
    border-top: 5px solid var(--green);
}

.investment-message > p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.investment-options,
.investment-page .online-coaching-section {
    padding-top: 10px;
}

.investment-cta {
    padding: 52px;
    color: white;
    background-color: var(--dark-green);
    text-align: center;
}

.investment-cta .section-label {
    color: var(--hover-green);
}

.investment-cta h2,
.investment-cta p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.investment-cta .primary-button {
    display: inline-block;
    margin-top: 14px;
    color: var(--dark-green);
    background-color: var(--light-green);
}

@media (max-width: 750px) {
    .investment-preview,
    .investment-message,
    .investment-principles {
        grid-template-columns: 1fr;
    }

    .investment-preview,
    .investment-message,
    .investment-cta {
        padding: 30px 22px;
    }

    .investment-hero {
        padding-top: 58px;
        padding-bottom: 58px;
    }
}


/* ---------- 404 page ---------- */

.error-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.not-found {
    display: grid;
    flex: 1;
    place-items: center;
    width: min(92%, 920px);
    margin: 0 auto;
    padding: 70px 0;
}

.not-found-card {
    position: relative;
    width: 100%;
    padding: clamp(36px, 7vw, 76px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgb(242 240 231 / 97%), rgb(220 232 192 / 92%));
    border-top: 7px solid var(--green);
    box-shadow: 0 24px 70px rgb(10 35 24 / 28%);
}

.not-found-code {
    position: absolute;
    top: -34px;
    right: 24px;
    margin: 0;
    color: rgb(88 116 67 / 10%);
    font-size: clamp(8rem, 24vw, 16rem);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.not-found-card h1 {
    position: relative;
    max-width: 650px;
    margin: 8px 0 20px;
    color: var(--dark-green);
    font-size: clamp(3rem, 8vw, 5.25rem);
    line-height: 0.98;
}

.not-found-card > p:not(.section-label, .not-found-code) {
    position: relative;
    max-width: 650px;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.not-found-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.not-found-assessment {
    position: relative;
    display: inline-block;
    margin-top: 24px;
    color: var(--dark-green);
    font-weight: bold;
}

@media (max-width: 600px) {
    .not-found {
        padding: 34px 0;
    }

    .not-found-card {
        padding: 34px 24px;
    }

    .not-found-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .not-found-actions a {
        text-align: center;
    }
}


/* Prominent Google Calendar booking banner */
.assessment-booking-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 10px 0 20px;
    padding: clamp(28px, 5vw, 42px);
    color: white;
    background: linear-gradient(135deg, #173d2b, #2f6549);
    border: 2px solid #a9c46c;
    box-shadow: 0 16px 34px rgb(23 61 43 / 22%);
}

.assessment-booking-banner .section-label {
    margin: 0 0 8px;
    color: #c4db8b;
}

.assessment-booking-banner h2 {
    margin: 0 0 10px;
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.assessment-booking-banner p:not(.section-label) {
    max-width: 650px;
    margin: 0;
    color: #edf2e7;
}

.assessment-booking-banner .contact-button {
    flex: 0 0 auto;
    padding: 15px 22px;
    text-align: center;
}

@media (max-width: 750px) {
    .assessment-booking-banner {
        align-items: stretch;
        flex-direction: column;
        gap: 22px;
    }
}
