:root {
    --gcs-green: #087a38;
    --gcs-green-hover: #05672f;
    --gcs-green-dark: #05652f;

    --gcs-dark: #06291b;
    --gcs-dark-deep: #031d13;

    --gcs-lime: #8bd500;

    --gcs-cream: #f8f4ea;
    --gcs-mint: #f1f7f2;
    --gcs-white: #ffffff;

    --gcs-text: #10261d;
    --gcs-body: #506258;

    --gcs-border: rgba(17, 62, 40, .11);

    --gcs-container: 1240px;

    --gcs-shadow: 0 24px 70px rgba(11, 50, 29, .09);

    --gcs-radius-sm: 8px;
    --gcs-radius: 18px;
    --gcs-radius-lg: 28px;
}

.gcs-site * { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.gcs-site {
    margin: 0;
    color: var(--gcs-text);
    background: var(--gcs-white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .gcs-header { top: 32px; }

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

.gcs-site :where(a) { color: inherit; text-decoration: none; }

.gcs-container {
    width: min(calc(100% - 64px), var(--gcs-container));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.gcs-skip { position: absolute; left: -9999px; top: 0; z-index: 2000; }

.gcs-skip:focus {
    left: 12px;
    top: 12px;
    padding: 12px 20px;
    background: #fff;
    color: var(--gcs-green);
    border-radius: var(--gcs-radius-sm);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.gcs-site :where(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid var(--gcs-green);
    outline-offset: 3px;
    border-radius: 3px;
}

.gcs-journey :where(a, button):focus-visible,
.gcs-footer :where(a, button):focus-visible,
.gcs-editorial__content :where(a, button):focus-visible,
.gcs-final-cta :where(a, button):focus-visible,
.gcs-about-why__panel :where(a, button):focus-visible,
.gcs-about-final-cta :where(a, button):focus-visible,
.gcs-about-audience-card--facilities :where(a, button):focus-visible {
    outline-color: #c7ff89;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .gcs-site *, .gcs-site *::before, .gcs-site *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

.gcs-site h1,
.gcs-site h2,
.gcs-site h3 {
    margin: 0;
    color: var(--gcs-text);
    font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.gcs-site h1 { font-size: clamp(2.9rem, 5vw, 4.4rem); }
.gcs-site h2 { font-size: clamp(2.1rem, 3.4vw, 3.2rem); }
.gcs-site h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }

.gcs-site p { margin: 0; color: var(--gcs-body); text-wrap: pretty; }

.gcs-site h1 em,
.gcs-site h2 em { display: block; color: var(--gcs-green); font-style: normal; }

.gcs-eyebrow {
    margin-bottom: 17px;
    color: var(--gcs-green);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.gcs-eyebrow--light { color: #c7ff89; }

.gcs-section-heading { max-width: 840px; margin: 0 auto 60px; text-align: center; }
.gcs-section-heading > p { max-width: 750px; margin: 22px auto 0; }

.gcs-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: .89rem;
    font-weight: 750;
    line-height: 1;
    
    text-decoration: none;
    transition: transform .2s ease, color .2s ease, background .2s ease,
                border-color .2s ease, box-shadow .2s ease;
}

.gcs-btn:hover { transform: translateY(-2px); }

.gcs-btn--primary {
    color: #fff;
    background: var(--gcs-green);
    box-shadow: 0 10px 30px rgba(8, 122, 56, .16);
}

.gcs-btn--primary:hover { background: var(--gcs-green-hover); }

.gcs-btn--outline { color: var(--gcs-green); border-color: var(--gcs-green); background: transparent; }
.gcs-btn--outline:hover { color: #fff; background: var(--gcs-green); }

.gcs-btn--light { color: var(--gcs-dark); background: #fff; }

.gcs-btn--outline-light { color: #fff; border-color: rgba(255, 255, 255, .65); }
.gcs-btn--outline-light:hover { color: var(--gcs-dark); background: #fff; }

.gcs-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(8, 53, 30, .07);
    backdrop-filter: blur(16px);
}

.gcs-header__inner {
    display: grid;
    min-height: 82px;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
}

.gcs-logo img { width: 150px; height: auto; }

.gcs-nav { display: flex; justify-content: center; gap: 33px; }

.gcs-nav a { position: relative; font-size: .83rem; font-weight: 620; }

.gcs-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    background: var(--gcs-green);
    transition: transform .2s ease;
}

.gcs-nav a:hover::after,
.gcs-nav a[aria-current="page"]::after { transform: scaleX(1); }

.gcs-menu-toggle,
.gcs-mobile-menu { display: none; }

.gcs-footer {
    padding: 75px 0 30px;
    color: #fff;
    background: var(--gcs-dark-deep);
    border-top: 3px solid var(--gcs-lime);
}

.gcs-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 70px; }

.gcs-footer__brand img {
    width: 165px;
    margin-bottom: 24px;
    padding: 9px;
    border-radius: 6px;
    background: #fff;
}

.gcs-footer__brand p { max-width: 330px; color: rgba(255, 255, 255, .72); font-size: .83rem; }

.gcs-footer__brand > a {
    display: block;
    width: fit-content;
    color: #b9ed70;
    font-size: .83rem;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

.gcs-footer__brand > a:first-of-type { margin-top: 20px; }
.gcs-footer__brand > a + a { margin-top: 8px; }

.gcs-footer h4 {
    margin: 0 0 20px;
    color: #b9ed70;
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gcs-footer__grid > div:not(:first-child) a {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
}

.gcs-footer__grid a:hover { color: #fff; }

.gcs-footer__bottom {
    margin-top: 60px;
    padding-top: 24px;
    color: rgba(255, 255, 255, .62);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .72rem;
}

@media (max-width: 1100px) {
    .gcs-container { width: min(calc(100% - 44px), var(--gcs-container)); }
    .gcs-nav { gap: 20px; }
}

@media (max-width: 900px) {
    body.admin-bar .gcs-header { top: 46px; }

    .gcs-header__inner { grid-template-columns: 1fr auto; }

    .gcs-nav,
    .gcs-header__cta { display: none; }

    .gcs-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .gcs-menu-toggle span[aria-hidden] { width: 22px; height: 2px; background: var(--gcs-dark); }

    .gcs-mobile-menu[hidden] { display: none; }

    .gcs-mobile-menu.is-open {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 10px 22px 24px;
        background: #fff;
        border-bottom: 1px solid var(--gcs-border);
    }

    .gcs-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .gcs-container { width: calc(100% - 36px); }

    .gcs-site h1 { font-size: 2.5rem; }
    .gcs-site h2 { font-size: 1.95rem; }

    .gcs-btn { width: 100%; }

    .gcs-footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

.gcs-error { padding: 80px 0 104px; max-width: 900px; }

.gcs-error h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }

.gcs-error__lead { max-width: 620px; margin-top: 22px; font-size: 1.04rem; line-height: 1.78; }

.gcs-error__search { max-width: 520px; margin-top: 34px; }

.gcs-error__search form { display: flex; flex-wrap: wrap; gap: 10px; }

.gcs-error__search label { flex: 1 1 240px; }

.gcs-error__search input[type="search"] {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--gcs-rule, var(--gcs-border));
    border-radius: 7px;
    background: #fff;
    color: var(--gcs-text);
    font: inherit;
    font-size: .95rem;
}

.gcs-error__search input[type="search"]:focus-visible {
    outline: 3px solid var(--gcs-green);
    outline-offset: 2px;
}

.gcs-error__search input[type="submit"] {
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: var(--gcs-green);
    color: #fff;
    font: inherit;
    font-size: .89rem;
    font-weight: 750;
    cursor: pointer;
}

.gcs-error__search input[type="submit"]:hover { background: var(--gcs-green-hover); }

.gcs-error__paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.gcs-error__path {
    padding: 30px 32px;
    border: 1px solid var(--gcs-border);
    border-radius: 16px;
    background: var(--gcs-cream);
}

.gcs-error__path-label {
    display: block;
    margin-bottom: 12px;
    color: var(--gcs-green);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.gcs-error__path p { margin-bottom: 22px; font-size: .93rem; }

.gcs-error__fallback { margin-top: 40px; font-size: .95rem; }

.gcs-error__fallback a { text-decoration: underline; text-underline-offset: .18em; }

@media (max-width: 700px) {
    .gcs-error__paths { grid-template-columns: 1fr; }
    .gcs-error__search form { flex-direction: column; }
    .gcs-error__search input[type="submit"] { width: 100%; }
}

.gcs-results { margin: 44px 0 0; padding: 0; list-style: none; }

.gcs-result { padding: 24px 0; border-top: 1px solid var(--gcs-border); }
.gcs-result:last-child { border-bottom: 1px solid var(--gcs-border); }

.gcs-result a {
    font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
    font-size: clamp(1.2rem, 1.7vw, 1.5rem);
    letter-spacing: -.02em;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.gcs-result p { margin-top: 8px; font-size: .92rem; }

.gcs-error .wp-block-query-pagination,
.gcs-error .navigation { margin-top: 36px; }
.gcs-error .nav-links { display: flex; gap: 14px; flex-wrap: wrap; }
.gcs-error .nav-links a,
.gcs-error .nav-links .current { text-decoration: underline; text-underline-offset: .18em; }
