:root {
    --gsite-text: #202124;
    --gsite-muted: #5f6368;
    --gsite-border: #e0e0e0;
    --gsite-surface: #ffffff;
    --gsite-soft: #f5f7fb;
    --gsite-accent: #2457a6;
    --gsite-accent-dark: #173b73;
    --gsite-yellow: #f5c542;
    --gsite-max: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gsite-text);
    background: var(--gsite-surface);
    font-family: Lato, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: var(--gsite-accent);
}

a:hover,
a:focus {
    color: var(--gsite-accent-dark);
}

img {
    max-width: 100%;
    height: auto;
}

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

.skip-link:focus {
    z-index: 9999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: #ffffff;
    border: 2px solid var(--gsite-accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--gsite-border);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1240px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 28px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 220px;
    gap: 12px;
    color: var(--gsite-text);
    text-decoration: none;
}

.site-brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #ffffff;
    background: var(--gsite-accent);
    border-radius: 50%;
    font-weight: 700;
}

.site-brand__logo img,
.custom-logo {
    display: block;
    width: auto;
    max-width: 56px;
    max-height: 44px;
}

.site-brand__title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-menu li {
    position: relative;
}

.site-menu a {
    display: block;
    padding: 24px 10px 22px;
    color: #3c4043;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

.site-menu a:hover,
.site-menu a:focus,
.site-menu .current-menu-item > a,
.site-menu .current-menu-ancestor > a {
    color: var(--gsite-accent);
    border-bottom-color: var(--gsite-accent);
}

.site-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 180px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid var(--gsite-border);
    box-shadow: 0 8px 24px rgba(60, 64, 67, 0.18);
}

.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu {
    display: block;
}

.site-menu .sub-menu a {
    padding: 10px 16px;
    border-bottom: 0;
    white-space: nowrap;
}

.site-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    margin-left: auto;
    background: transparent;
    border: 0;
}

.site-nav-toggle__bar {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--gsite-text);
}

.site-main {
    min-height: 60vh;
}

.page-shell {
    max-width: var(--gsite-max);
    margin: 0 auto;
    padding: 0 28px 72px;
}

.gsite-page {
    background: #ffffff;
}

.page-title {
    padding: 64px 0 22px;
}

.page-title h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 600;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    margin: 34px 0 14px;
    line-height: 1.25;
    font-weight: 600;
}

.entry-content h1 {
    font-size: 44px;
}

.entry-content h2 {
    font-size: 30px;
}

.entry-content h3 {
    font-size: 22px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
    margin: 0 0 18px;
}

.gsite-hero {
    display: grid;
    align-items: end;
    min-height: 460px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 84px max(28px, calc((100vw - var(--gsite-max)) / 2 + 28px)) 72px;
    color: #ffffff;
    background-color: #315b93;
    background-position: center;
    background-size: cover;
    position: relative;
}

.gsite-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(20, 38, 69, 0.72), rgba(20, 38, 69, 0.28));
}

.gsite-hero__body {
    position: relative;
    max-width: 780px;
}

.gsite-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gsite-hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.12;
}

.gsite-hero p {
    max-width: 760px;
    font-size: 20px;
}

.gsite-section {
    padding: 52px 0;
    border-bottom: 1px solid var(--gsite-border);
}

.gsite-section--soft {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: max(28px, calc((100vw - var(--gsite-max)) / 2 + 28px));
    padding-left: max(28px, calc((100vw - var(--gsite-max)) / 2 + 28px));
    background: var(--gsite-soft);
}

.gsite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.gsite-button,
.entry-content .gsite-button {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 18px;
    color: #ffffff;
    background: var(--gsite-accent);
    border-radius: 3px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.gsite-button:hover,
.gsite-button:focus {
    color: #ffffff;
    background: var(--gsite-accent-dark);
}

.gsite-button--secondary {
    color: var(--gsite-accent);
    background: #ffffff;
    border: 1px solid var(--gsite-accent);
}

.gsite-button--secondary:hover,
.gsite-button--secondary:focus {
    color: #ffffff;
}

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

.gsite-card {
    padding: 22px;
    border: 1px solid var(--gsite-border);
    border-radius: 4px;
    background: #ffffff;
}

.gsite-card h3 {
    margin-top: 0;
}

.gsite-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.gsite-image-grid figure {
    margin: 0;
}

.gsite-image-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 3px;
}

.gsite-doc-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding: 0;
    list-style: none;
}

.gsite-doc-list li {
    margin: 0;
}

.gsite-doc-list a {
    display: block;
    padding: 10px 12px;
    color: var(--gsite-text);
    text-decoration: none;
    border: 1px solid var(--gsite-border);
    border-radius: 4px;
    background: #ffffff;
}

.gsite-doc-list a:hover,
.gsite-doc-list a:focus {
    color: var(--gsite-accent);
    border-color: var(--gsite-accent);
}

.site-footer {
    color: #ffffff;
    background: #2f3437;
}

.site-footer__inner {
    max-width: var(--gsite-max);
    margin: 0 auto;
    padding: 30px 28px;
    font-size: 13px;
    line-height: 1.55;
}

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

.site-footer a {
    color: #ffffff;
}

@media (max-width: 980px) {
    .site-header__inner {
        flex-wrap: wrap;
        min-height: 64px;
        padding: 0 18px;
    }

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

    .site-nav {
        display: none;
        width: 100%;
        padding-bottom: 14px;
    }

    .menu-is-open .site-nav {
        display: block;
    }

    .site-menu {
        display: block;
    }

    .site-menu a {
        padding: 13px 0;
        border-bottom: 1px solid var(--gsite-border);
    }

    .site-menu .sub-menu {
        position: static;
        display: block;
        min-width: 0;
        padding: 0 0 0 18px;
        border: 0;
        box-shadow: none;
    }

    .gsite-grid,
    .gsite-image-grid,
    .gsite-doc-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-brand {
        min-width: 0;
    }

    .site-brand__title {
        font-size: 18px;
    }

    .page-shell {
        padding-right: 20px;
        padding-left: 20px;
    }

    .page-title {
        padding-top: 42px;
    }

    .page-title h1,
    .entry-content h1 {
        font-size: 34px;
    }

    .gsite-hero {
        min-height: 410px;
        padding-top: 58px;
        padding-bottom: 54px;
    }

    .gsite-hero h1 {
        font-size: 34px;
    }

    .gsite-hero p {
        font-size: 18px;
    }

    .gsite-grid,
    .gsite-image-grid,
    .gsite-doc-list {
        grid-template-columns: 1fr;
    }
}

/* Google Sites fidelity pass - Home screenshot driven */
:root {
    --gsite-yellow: #ffcc05;
    --gsite-blue: #3eb5ed;
    --gsite-green: #55de28;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 0;
    box-shadow: none;
}

.site-header__inner {
    max-width: none;
    min-height: 72px;
    padding: 0 31px;
    gap: 22px;
}

.site-brand {
    min-width: 360px;
    gap: 18px;
}

.site-brand__logo img,
.custom-logo {
    width: auto;
    max-width: 86px;
    max-height: 42px;
}

.site-brand__title {
    color: #4a4a4a;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0;
}

.site-nav {
    align-items: center;
    gap: 18px;
}

.site-menu {
    gap: 24px;
}

.site-menu a {
    padding: 25px 0 23px;
    color: #777777;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 0;
}

.site-menu a:hover,
.site-menu a:focus,
.site-menu .current-menu-item > a,
.site-menu .current-menu-ancestor > a {
    color: #222222;
    border-bottom-color: transparent;
}

.site-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
}

.site-menu .sub-menu {
    min-width: 170px;
    border: 0;
    box-shadow: 0 3px 8px rgba(60, 64, 67, 0.18);
}

.site-menu .sub-menu a {
    padding: 12px 18px;
}

.site-search-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.site-search-icon::before {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 13px;
    height: 13px;
    content: "";
    border: 3px solid #5f6368;
    border-radius: 50%;
}

.site-search-icon::after {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 9px;
    height: 3px;
    content: "";
    background: #5f6368;
    transform: rotate(45deg);
    transform-origin: center;
}

.home .page-shell {
    max-width: none;
    padding: 0;
}

.home .gsite-page,
.gsite-home-original {
    margin: 0;
    background: #ffffff;
}

.gsite-home-original section {
    margin: 0;
}

.gsite-home-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: 42px 24px 74px;
    background: #ffffff;
}

.gsite-home-logo-inner {
    width: min(620px, 72vw);
}

.gsite-home-logo-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.gsite-home-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 122px;
    padding: 24px;
    background: var(--gsite-yellow);
    text-align: center;
}

.gsite-home-slogan h1 {
    margin: 0;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.gsite-home-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(190px, 270px));
    justify-content: center;
    gap: clamp(42px, 9vw, 190px);
    padding: 44px 24px 42px;
    background: #f7f7f7;
}

.gsite-graphic-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 12px 26px;
    color: #000000;
    font-family: "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 0.95;
    text-align: center;
    text-decoration: none;
    border: 2px solid #333333;
    border-radius: 14px;
    box-shadow: 5px 7px 0 rgba(0, 0, 0, 0.22);
    transform: rotate(-2deg);
}

.gsite-graphic-button::before {
    position: absolute;
    top: -10px;
    right: 34px;
    width: 54px;
    height: 28px;
    content: "";
    border-top: 7px dotted #111111;
    border-radius: 50%;
    transform: rotate(8deg);
}

.gsite-graphic-button--join,
.gsite-graphic-button--join:hover,
.gsite-graphic-button--join:focus {
    background: var(--gsite-yellow);
    color: #000000;
}

.gsite-graphic-button--watch,
.gsite-graphic-button--watch:hover,
.gsite-graphic-button--watch:focus {
    background: var(--gsite-blue);
    color: #000000;
}

.gsite-graphic-button--brochure,
.gsite-graphic-button--brochure:hover,
.gsite-graphic-button--brochure:focus {
    background: var(--gsite-green);
    color: #000000;
}

.gsite-home-feature {
    padding: 28px 24px 0;
    background: #ffffff;
    text-align: center;
}

.gsite-home-feature a,
.gsite-home-calendar {
    display: block;
    width: min(1340px, calc(100% - 48px));
    margin: 0 auto;
}

.gsite-home-cineo-img,
.gsite-home-wide-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.gsite-home-image-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 46px 0 32px;
    background: #ffffff;
}

.gsite-home-image-row figure,
.gsite-home-gallery figure,
.gsite-home-partner-grid figure {
    margin: 0;
}

.gsite-home-image-row img,
.gsite-home-gallery img,
.gsite-home-partner-grid img {
    display: block;
    width: 100%;
    height: auto;
}

.gsite-home-calendar {
    padding: 28px 0 44px;
    text-align: center;
}

.gsite-home-yellow-block {
    padding: 54px 24px;
    background: var(--gsite-yellow);
    text-align: center;
}

.gsite-home-yellow-inner {
    max-width: 980px;
    margin: 0 auto;
}

.gsite-home-yellow-block h2 {
    margin: 0 0 14px;
    color: #000000;
    font-size: 42px;
    font-weight: 700;
}

.gsite-home-yellow-block p {
    margin: 0 auto 24px;
    max-width: 720px;
    color: #000000;
    font-size: 20px;
}

.gsite-home-yellow-img {
    display: block;
    width: min(640px, 100%);
    margin: 0 auto;
}

.gsite-home-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 52px 0;
    background: #ffffff;
}

.gsite-home-gallery img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gsite-home-newsletter {
    display: grid;
    grid-template-columns: minmax(280px, 520px) minmax(280px, 520px);
    justify-content: center;
    gap: 48px;
    padding: 54px 32px;
    background: #f7f7f7;
}

.gsite-home-newsletter-card {
    align-self: center;
    color: #202124;
    font-family: Arial, Helvetica, sans-serif;
}

.gsite-home-newsletter-card h2 {
    margin: 0 0 18px;
    font-size: 34px;
    font-weight: 700;
}

.gsite-home-newsletter-card p {
    margin: 0 0 18px;
    font-size: 16px;
}

.gsite-home-newsletter-form label span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
}

.gsite-home-newsletter-form input {
    width: 100%;
    max-width: 360px;
    height: 42px;
    padding: 8px 10px;
    border: 1px solid #999999;
    border-radius: 0;
}

.gsite-home-newsletter-form button {
    display: block;
    height: 42px;
    margin-top: 14px;
    padding: 0 22px;
    color: #ffffff;
    background: #111111;
    border: 0;
    border-radius: 0;
    font-weight: 700;
}

.gsite-home-newsletter-img {
    display: block;
    width: 100%;
    height: auto;
}

.gsite-home-partners {
    padding: 50px 32px 58px;
    background: #ffffff;
    text-align: center;
}

.gsite-home-partners h2 {
    margin: 0 auto 22px;
    color: #202124;
    font-size: 15px;
    font-weight: 700;
}

.gsite-home-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 22px 30px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: center;
}

.gsite-home-contact-footer {
    padding: 28px 32px;
    background: var(--gsite-yellow);
    color: #000000;
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
}

.gsite-home-contact-footer p {
    margin: 0 0 6px;
}

.gsite-home-contact-footer a {
    color: #000000;
}

.site-footer {
    color: #202124;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.site-footer__inner {
    color: #202124;
    text-align: center;
}

.site-footer a {
    color: #202124;
}

@media (max-width: 1120px) {
    .site-brand {
        min-width: 280px;
    }

    .site-menu {
        gap: 12px;
    }

    .site-menu a {
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        padding: 0 18px;
    }

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

    .site-brand__title {
        font-size: 21px;
    }

    .site-nav {
        gap: 0;
    }

    .site-search-icon {
        display: none;
    }

    .site-menu {
        gap: 0;
    }

    .site-menu a {
        padding: 13px 0;
    }

    .gsite-home-logo {
        min-height: 360px;
        padding-top: 38px;
        padding-bottom: 58px;
    }

    .gsite-home-buttons,
    .gsite-home-image-row,
    .gsite-home-gallery,
    .gsite-home-newsletter,
    .gsite-home-partner-grid {
        grid-template-columns: 1fr;
    }

    .gsite-home-buttons {
        gap: 28px;
        justify-items: center;
    }

    .gsite-graphic-button {
        width: min(280px, 86vw);
    }
}

@media (max-width: 640px) {
    .site-brand__logo img,
    .custom-logo {
        max-width: 72px;
        max-height: 36px;
    }

    .site-brand__title {
        font-size: 18px;
    }

    .gsite-home-logo {
        min-height: 260px;
        padding-bottom: 42px;
    }

    .gsite-home-slogan {
        min-height: 96px;
    }

    .gsite-home-slogan h1 {
        font-size: 21px;
    }

    .gsite-graphic-button {
        min-height: 76px;
        font-size: 24px;
    }

    .gsite-home-yellow-block h2 {
        font-size: 32px;
    }
}

