/* Basic CSS Boilerplate */

/* variables */

:root {
    --genco-alabaster: #e9e5de;
    --genco-evergreen: #181e0e;
    --genco-sage: #bebfa9;
    --genco-ember: #1c1713;
    --genco-selah: #627773;
    --genco-heirloom: #4c2415;
    --genco-harvest: #724527;
    --genco-bloom: #a07f73;
    --genco-white: #ffffff;
    --genco-black: #000000;
    --genco-font-base: "Libre Franklin", sans-serif;
    --genco-font-serif: "Libre Baskerville", serif;
    --genco-font-label: "Mulish", sans-serif;
    --genco-font-cursive: var(--genco-font-serif);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--genco-font-base);
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--genco-ember);
    background-color: var(--genco-alabaster);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--genco-evergreen);
    font-family: var(--genco-font-base);
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.2;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
    font-family: var(--genco-font-serif);
    font-style: italic;
    font-weight: 400;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    line-height: 1.8;
}

.allura-regular {
    font-family: var(--genco-font-cursive);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.5;
}


/* Landing Page Styles */
.landing-page {
    min-height: 100vh;
}

.banner {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 5vw, 4rem);
    background:
        linear-gradient(
            100deg,
            color-mix(in srgb, var(--genco-evergreen) 75%, transparent) 0%,
            color-mix(in srgb, var(--genco-evergreen) 56%, transparent) 35%,
            color-mix(in srgb, var(--genco-evergreen) 22%, transparent) 62%,
            color-mix(in srgb, var(--genco-evergreen) 5%, transparent) 100%
        ),
        radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--genco-harvest) 24%, transparent) 0%, transparent 40%);
}

.banner-copy {
    animation: banner-copy-enter 900ms ease-out both;
    width: min(40rem, 100%);
}

.banner-logo {
    display: block;
    width: 100%;
    height: auto;
}

@keyframes banner-copy-enter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .banner-copy {
        animation: none;
    }
}

@media (max-width: 900px) {
    .banner {
        min-height: 25rem;
    }
}

@media (max-width: 520px) {
    .banner {
        height: 72vh;
    }
}

.how-we-serve {
    position: relative;
    padding: clamp(3.25rem, 7vw, 5.75rem) clamp(1rem, 4vw, 3rem);
    color: var(--genco-ember);
}

.how-we-serve-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.how-we-serve-heading {
    margin: 0 0 clamp(2rem, 4vw, 3.25rem);
    color: var(--genco-evergreen);
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    line-height: 1.2;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1.2rem, 2.5vw, 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.service-area-icon {
    width: clamp(4.25rem, 8vw, 6rem);
    height: clamp(4.25rem, 8vw, 6rem);
    object-fit: contain;
}

.service-area-title {
    max-width: 13rem;
    margin: 0;
    color: var(--genco-evergreen);
    font-family: var(--genco-font-base);
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    font-weight: 600;
    line-height: 1.2;
}

.how-we-serve-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

@media (max-width: 980px) {
    .service-area-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-area-list {
        grid-template-columns: 1fr;
    }

    .service-area-title {
        max-width: 18rem;
    }
}

.gospel-driven-why {
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
    background:
        radial-gradient(circle at 8% 10%, color-mix(in oklab, var(--genco-sage), var(--genco-white) 72%) 0, transparent 28%),
        color-mix(in oklab, var(--genco-alabaster), var(--genco-white) 10%);
}

.gospel-driven-why-inner {
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.gospel-driven-why-image-wrap {
    position: relative;
}

.gospel-driven-why-image-wrap::before {
    content: "";
    position: absolute;
    inset: 1.1rem -1.1rem -1.1rem 1.1rem;
    border: 1px solid color-mix(in oklab, var(--genco-selah), var(--genco-white) 55%);
    border-radius: 0;
}

.gospel-driven-why-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 22px 48px color-mix(in srgb, var(--genco-evergreen) 20%, transparent);
}

.gospel-driven-why-copy {
    padding: clamp(1.5rem, 4vw, 3rem);
    background-color: color-mix(in oklab, var(--genco-white), var(--genco-alabaster) 36%);
    border: 1px solid color-mix(in oklab, var(--genco-selah), var(--genco-white) 78%);
    border-radius: 1.25rem;
    box-shadow: 0 16px 40px color-mix(in srgb, var(--genco-evergreen) 10%, transparent);
}

.gospel-driven-why-eyebrow {
    margin: 0 0 0.65rem;
    color: var(--genco-heirloom);
    font-family: var(--genco-font-label);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2;
    text-transform: uppercase;
}

.gospel-driven-why-heading {
    margin: 0 0 1.1rem;
    color: var(--genco-evergreen);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.2;
}

.gospel-driven-why-copy p:last-child {
    margin-bottom: 0;
    color: var(--genco-ember);
    font-size: clamp(1.05rem, 1.45vw, 1.18rem);
    line-height: 1.8;
}

@media (max-width: 820px) {
    .gospel-driven-why-inner {
        grid-template-columns: 1fr;
    }

    .gospel-driven-why-image-wrap {
        max-width: 26rem;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .gospel-driven-why-image-wrap::before {
        inset: 0.7rem -0.7rem -0.7rem 0.7rem;
    }
}

.generosity-cta {
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem);
    background-color: var(--genco-alabaster);
}

.generosity-cta-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.generosity-cta-heading {
    margin: 0 0 1rem;
    color: var(--genco-evergreen);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.2;
}

.generosity-cta-card p {
    max-width: 38rem;
    margin: 0 auto 1.65rem;
    color: var(--genco-ember);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.8;
}

/* Navigation Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--genco-alabaster);
}

.navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo img {
    height: 20px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 1.5rem;
    height: 2px;
    margin: 0;
    background-color: var(--genco-evergreen);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--genco-evergreen);
    text-decoration: none;
    font-family: var(--genco-font-label);
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-link.is-current-page {
    text-decoration: underline;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: block;
}

.nav-submenu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--genco-evergreen);
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
}

.nav-submenu-icon {
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 auto;
}

.nav-submenu-icon::before,
.nav-submenu-icon::after {
    content: "";
    position: absolute;
    background-color: currentcolor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-submenu-icon::before {
    width: 1rem;
    height: 2px;
}

.nav-submenu-icon::after {
    width: 2px;
    height: 1rem;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--genco-white);
    min-width: 200px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--genco-black) 15%, transparent);
    border-radius: 4px;
    border: 1px solid color-mix(in oklab, var(--genco-sage), var(--genco-white) 45%);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    margin-left: 1rem;
}

@media (max-width: 900px) {
    .navigation {
        flex-wrap: wrap;
        align-items: center;
        align-content: flex-start;
        min-height: auto;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        will-change: max-height;
    }

    .navigation.is-open .nav-menu {
        max-height: 80vh;
    }

    .nav-item {
        border-bottom: 1px solid color-mix(in oklab, var(--genco-evergreen), var(--genco-white) 80%);
    }

    .nav-link {
        padding: 0.85rem 0;
    }

    .nav-dropdown-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .nav-submenu-toggle {
        display: inline-block;
        flex-shrink: 0;
    }

    .has-dropdown .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        padding-left: 1rem;
        background: transparent;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        transition: max-height 0.25s ease;
    }

    .has-dropdown.is-open .dropdown-menu {
        max-height: 40vh;
    }

    .has-dropdown.is-open .nav-submenu-icon::after {
        opacity: 0;
    }

    .dropdown-item {
        margin-left: 0;
    }

    .dropdown-item .nav-link {
        padding-left: 0.75rem;
    }
}

/* Button Styles */
.btn-choose,
.button {
    display: inline-block;
    padding: 0.7rem 2rem;
    background-color: var(--genco-heirloom);
    border: 0;
    border-radius: 0;
    color: var(--genco-alabaster);
    font-family: var(--genco-font-label);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.link-list-item {
    margin: 0;
}

.link-button {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.content-divider {
    border: 0;
    border-top: 1px solid var(--genco-black);
    margin: 2rem 0;
}

.inline-svg-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    margin: 0 0 1.25rem;
    text-align: left;
}

.inline-svg-heading-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.inline-svg-heading-h3 .inline-svg-heading-icon {
    width: 2.25rem;
    height: 2.25rem;
}

.inline-svg-heading-h4 .inline-svg-heading-icon {
    width: 1.8rem;
    height: 1.8rem;
}

.inline-svg-heading-image {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
}

.inline-svg-heading-text {
    margin: 0;
    color: var(--genco-evergreen);
    line-height: 1.1;
}

.image-link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
}

.image-link-list-item {
    margin: 0;
}

.image-link {
    display: block;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 4px color-mix(in srgb, var(--genco-black) 12%, transparent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--genco-black) 20%, transparent);
}

.image-link:focus-visible {
    outline: 3px solid var(--genco-heirloom);
    outline-offset: 3px;
}

.image-link-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.72);
}

.image-link-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 1rem 1rem 1.2rem;
    color: var(--genco-alabaster);
}

.image-link-headline {
    font-family: var(--genco-font-base);
    font-size: 1.85rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--genco-alabaster);
}

.audience-list {
    margin: 2.5rem 0;
    padding: 1.5rem;
    border-radius: 1rem;
    background:
        radial-gradient(circle at 100% 0%, color-mix(in oklab, var(--genco-sage), var(--genco-white) 72%) 0, transparent 40%),
        radial-gradient(circle at 0% 100%, color-mix(in oklab, var(--genco-selah), var(--genco-white) 84%) 0, transparent 45%),
        color-mix(in oklab, var(--genco-alabaster), var(--genco-white) 18%);
    border: 1px solid color-mix(in oklab, var(--genco-selah), var(--genco-white) 80%);
}

.audience-list-eyebrow {
    margin: 0;
    color: color-mix(in oklab, var(--genco-evergreen), var(--genco-black) 15%);
    font-family: var(--genco-font-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 2;
}

.audience-list-heading {
    margin: 0.45rem 0 1.25rem;
    color: var(--genco-evergreen);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.audience-list-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.audience-list-item {
    margin: 0;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.85rem 0.9rem;
    background-color: color-mix(in oklab, var(--genco-white), var(--genco-alabaster) 75%);
    border-radius: 0.75rem;
    border: 1px solid color-mix(in oklab, var(--genco-selah), var(--genco-white) 84%);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--genco-black) 5%, transparent);
}

.audience-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--genco-evergreen);
    background: linear-gradient(
        145deg,
        color-mix(in oklab, var(--genco-sage), var(--genco-white) 68%),
        color-mix(in oklab, var(--genco-sage), var(--genco-white) 82%)
    );
}

.audience-icon svg,
.audience-icon img {
    width: 1.45rem;
    height: 1.45rem;
}

.audience-list-text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
    color: var(--genco-ember);
    font-weight: 600;
}

@media (max-width: 700px) {
    .image-link-list {
        grid-template-columns: 1fr;
    }

    .image-link-overlay {
        padding: 0.85rem 0.75rem 0.75rem;
    }

    .image-link-headline {
        font-size: 1.55rem;
    }

    .audience-list {
        margin: 1.8rem 0;
        padding: 1rem;
    }

    .audience-list-grid {
        grid-template-columns: 1fr;
    }

    .audience-list-item {
        padding: 0.75rem;
    }

    .audience-list-text {
        font-size: 0.98rem;
    }
}

.page-layout {
    /* accounting for header height */
    min-height: calc(100vh - 70px);
    margin: 0;
    display: flex;
    flex-direction: column;
}

.page-layout > .content {
    flex: 1;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.content > .post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content > .post-content {
    margin-bottom: 3rem;
    display: block;
}

.content > .post-content::after {
    content: "";
    clear: both;
    display: block;
}

.content-page .post-content figure,
.content-page .post-content .richtext-image,
.content-page .post-content img,
.blog-page .post-content figure,
.blog-page .post-content .richtext-image,
.blog-page .post-content img {
    max-width: 100%;
}

.content-page .post-content img,
.blog-page .post-content img {
    height: auto;
    display: block;
}

.content-page .post-content .inline-svg-heading {
    display: flex;
}

.content-page .post-content .inline-svg-heading .inline-svg-heading-image {
    width: 100%;
    max-width: none;
    height: 100%;
}

.content-page .post-content figure,
.blog-page .post-content figure {
    margin: 1.5rem 0;
}

.richtext-image {
    height: auto;
    width: 100%;
}

.richtext-image.left {
    display: block;
    margin-left: 0;
    margin-right: auto;
    width: auto;
    float: left;
    margin: 1rem;
}

.richtext-image.right {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: auto;
    float: right;
    left: 1rem;
}

@media (max-width: 700px) {
    .richtext-image.right {
        float: none;
        display: block;
        margin: 1rem auto;
        max-width: 100%;
    }

    .richtext-image.left {

        float: none;
        display: block;
        margin: 1rem auto;
        max-width: 100%;
    }
}

/* Social Sharing Styles */
.social-sharing {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--genco-alabaster);
    color: var(--genco-evergreen);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--genco-evergreen);
}

.social-link:hover {
    background-color: var(--genco-evergreen);
    color: var(--genco-alabaster);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}


.footer {
    background-color: color-mix(in oklab, var(--genco-sage), var(--genco-white) 80%);
    border-top: 1px solid var(--genco-evergreen);
    padding: 2rem;
}

.footer-message {
    margin: 0 0 1rem;
}

.footer-message-text {
    color: var(--genco-evergreen);
    font-weight: 600;
}

.form.-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form.-inline > div {
    flex: 1 1 12rem;
    min-width: 0;
}

.form.-inline .cf-turnstile {
    flex: 1 1 100%;
    order: -1;
}

.form .input {
    background-color: transparent;
    border: 1px solid var(--genco-evergreen);
    font-family: var(--genco-font-base);
    font-size: 1rem;
    padding: 1rem;
    width: 100%;
}

.form .submit {
    font-size: 1rem;
    background-color: var(--genco-heirloom);
    padding: 1rem 2rem;
    border: none;
    color: var(--genco-alabaster);
    border-radius: 0;
    cursor: pointer;
    font-family: var(--genco-font-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2;
    text-transform: uppercase;
    width: 100%;
}

.form.-inline .input,
.form.-inline .submit {
    display: block;
    line-height: 1.2;
}

.form.-inline .submit {
    border: 1px solid var(--genco-heirloom);
}

.lead-capture-form-block {
    margin: 1.5rem 0;
}

.lead-capture-form-messages {
    margin: 0 0 0.75rem;
}

.lead-capture-form-message {
    margin: 0;
    color: var(--genco-evergreen);
    font-weight: 600;
}

.contact-page-form-block {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--genco-evergreen);
}

.contact-page-form-block > h2 {
    margin: 0 0 1rem;
}

.contact-page-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-page-form > div {
    flex: 1 1 16rem;
    min-width: 0;
}

.contact-page-form label {
    display: block;
    margin: 0 0 0.4rem;
    font-weight: 600;
}

.contact-page-form-services {
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--genco-evergreen);
    padding: 1rem;
}

.contact-page-form-services legend {
    font-weight: 600;
    padding: 0 0.35rem;
}

.contact-page-form-services input[type="checkbox"] {
    margin-right: 0.5rem;
}

.contact-page-form .contact-page-form-message-field {
    flex-basis: 100%;
}

.contact-page-form textarea.input {
    resize: vertical;
}

.contact-page-form-messages {
    margin: 0 0 0.75rem;
}

.contact-page-form-message {
    margin: 0;
    color: var(--genco-evergreen);
    font-weight: 600;
}

.blog-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 20rem);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    margin-bottom: 2rem;
}

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

.blog-intro-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 16px 40px color-mix(in srgb, var(--genco-evergreen) 12%, transparent);
}

.blog-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.post-preview {
    padding: clamp(1.25rem, 4vw, 2rem);
    background-color: color-mix(in oklab, var(--genco-white), var(--genco-alabaster) 72%);
    border: 1px solid color-mix(in oklab, var(--genco-selah), var(--genco-white) 80%);
    border-radius: 1rem;
}

.post-preview-meta {
    margin-bottom: 0.55rem;
    color: var(--genco-heirloom);
    font-family: var(--genco-font-label);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2;
    text-transform: uppercase;
}

.post-preview-title {
    margin-bottom: 0.8rem;
    font-size: clamp(1.65rem, 4vw, 2.3rem);
    line-height: 1.2;
}

.post-preview-title a {
    color: inherit;
    text-decoration: none;
}

.post-preview-title a:hover {
    text-decoration: underline;
}

.post-preview-summary {
    max-width: 42rem;
    margin-bottom: 1.25rem;
    color: var(--genco-ember);
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-preview-link {
    color: var(--genco-evergreen);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.post-preview-link:hover {
    color: color-mix(in oklab, var(--genco-evergreen), var(--genco-black) 16%);
}

@media (max-width: 700px) {
    .blog-index-page .content > .post-header {
        margin-bottom: 1.75rem;
    }

    .blog-index-page h1 {
        font-size: clamp(2.7rem, 16vw, 4rem);
        line-height: 1.2;
    }

    .blog-intro {
        grid-template-columns: 1fr;
    }

    .blog-intro-image {
        max-width: 24rem;
        margin: 0 auto;
    }
}

/* About Page */
.about-page .content {
    max-width: 1100px;
}

.about-people {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.about-person {
    flex: 1 1 16rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-person-photo img {
    display: block;
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
}

.about-person-name {
    margin-bottom: 0;
}

.about-person-bio p:last-child {
    margin-bottom: 0;
}

.about-bottom-photo {
    margin-top: 2rem;
}

.about-bottom-photo img {
    width: 100%;
    height: auto;
    display: block;
}
