:root {
    --ocg-bg: #ffffff;
    --ocg-surface: #f6f7f8;
    --ocg-border: #d9dde3;
    --ocg-text: #17202a;
    --ocg-text-soft: #4b5563;
    --ocg-link: #0f5da8;
    --ocg-max-width: 1120px;
    --ocg-content-narrow: 720px;
    --ocg-space-1: 0.5rem;
    --ocg-space-2: 0.75rem;
    --ocg-space-3: 1rem;
    --ocg-space-4: 1.5rem;
    --ocg-space-5: 2rem;
    --ocg-radius: 12px;
    --ocg-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ocg-shadow-hover: 0 10px 22px rgba(15, 23, 42, 0.12);
    --ocg-border-color: rgba(0, 0, 0, 0.08);
    --ocg-surface-muted: rgba(0, 0, 0, 0.04);
    --ocg-text-muted: rgba(0, 0, 0, 0.72);
    --ocg-card-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
    --ocg-divider: rgba(23, 32, 42, 0.12);
    --ocg-section-padding: 3rem;
    --ocg-button-radius: 12px;
    --ocg-button-padding: 0.75rem 1.25rem;
    --ocg-space-6: 3rem;
    --ocg-space-7: 4rem;
    --ocg-header-height: 72px;
    --ocg-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ocg-font-heading: var(--ocg-font-body);
    --ocg-type-h1: clamp(2rem, 3vw + 1rem, 3.25rem);
    --ocg-type-h2: clamp(1.6rem, 1.5vw + 1.2rem, 2.2rem);
    --ocg-type-h3: clamp(1.35rem, 1.25rem + 0.4vw, 1.6rem);
    --ocg-type-h4: 1.125rem;
    --ocg-type-body: 1rem;
    --ocg-type-small: 0.95rem;
    --ocg-leading-tight: 1.1;
    --ocg-leading-heading: 1.25;
    --ocg-leading-body: 1.6;
    --ocg-weight-regular: 400;
    --ocg-weight-medium: 600;
    --ocg-weight-bold: 700;
    --ocg-text-primary: var(--ocg-text);
    --ocg-text-secondary: var(--ocg-text-soft);
    --ocg-space-heading-after: var(--ocg-space-3);
    --ocg-space-paragraph-after: var(--ocg-space-4);
    --ocg-prose-measure: 70ch;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--ocg-bg);
    color: var(--ocg-text-primary);
    font-family: var(--ocg-font-body);
    font-size: var(--ocg-type-body);
    font-weight: var(--ocg-weight-regular);
    line-height: var(--ocg-leading-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--ocg-space-heading-after);
    color: inherit;
    font-family: var(--ocg-font-heading);
    font-weight: var(--ocg-weight-bold);
    line-height: var(--ocg-leading-heading);
}

h1 {
    font-size: var(--ocg-type-h1);
    line-height: var(--ocg-leading-tight);
}

h2 {
    font-size: var(--ocg-type-h2);
}

h3 {
    font-size: var(--ocg-type-h3);
}

h4 {
    font-size: var(--ocg-type-h4);
    line-height: 1.35;
}

p {
    margin: 0 0 var(--ocg-space-paragraph-after);
    font-size: var(--ocg-type-body);
    line-height: var(--ocg-leading-body);
}

ul,
ol {
    margin: 0 0 var(--ocg-space-paragraph-after);
    padding-left: var(--ocg-space-5);
    line-height: var(--ocg-leading-body);
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li + li {
    margin-top: var(--ocg-space-1);
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--ocg-link);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

button {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-width,
.ocg-container {
    width: min(100% - 2rem, var(--ocg-max-width));
    margin-inline: auto;
}

.ocg-section-copy {
    display: flex;
    flex-direction: column;
    gap: var(--ocg-space-3);
}

.ocg-section-copy p {
    margin: 0;
}

.site-header {
    border-bottom: 0;
    background: var(--ocg-bg);
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header-inner,
.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ocg-space-4);
    padding: var(--ocg-space-3) 0;
    min-height: var(--ocg-header-height);
}

.branding {
    display: flex;
    align-items: center;
    gap: var(--ocg-space-3);
    min-width: 0;
}

.site-logo,
.custom-logo-link {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
}

.site-logo {
    width: min(100%, var(--ocg-logo-box-width, 13rem));
    height: var(--ocg-logo-box-height, 3.75rem);
    padding: var(--ocg-logo-clear-space, 0);
    box-sizing: border-box;
}

.site-logo > .custom-logo-link {
    width: 100%;
    height: 100%;
}

.site-logo .custom-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    flex-shrink: 1;
}

.site-logo--wide { --ocg-logo-box-width: 16rem; --ocg-logo-box-height: 3.5rem; }
.site-logo--standard { --ocg-logo-box-width: 12rem; --ocg-logo-box-height: 3.75rem; }
.site-logo--square { --ocg-logo-box-width: 3.75rem; --ocg-logo-box-height: 3.75rem; }
.site-logo--tall { --ocg-logo-box-width: 3rem; --ocg-logo-box-height: 3.75rem; }

.site-logo--backplate {
    --ocg-logo-clear-space: 0.4rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 31, 46, 0.1);
    border-radius: 0.65rem;
}

.site-brand-text {
    min-width: 0;
    max-width: clamp(12rem, 30vw, 22rem);
}

.site-logo-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #0c1b2b;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-brand-text .site-title {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
}

.site-brand-text--fallback .site-title {
    max-width: min(22rem, 48vw);
    font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-title,
.site-description {
    margin: 0;
}

.site-title,
.site-description {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.site-description {
    color: var(--ocg-text-soft);
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--ocg-border);
    background: transparent;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    cursor: pointer;
}

.site-navigation > ul,
.site-navigation > .menu,
.site-footer-nav > ul,
.site-footer-nav > .menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navigation a,
.site-footer-nav a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.25;
    padding: 0.35rem 0.2rem;
    border-radius: 6px;
}

.site-navigation .menu > li,
.site-footer-nav .menu > li {
    display: flex;
    align-items: center;
    line-height: 1.25;
}

.site-navigation a:hover,
.site-navigation a:focus,
.site-footer-nav a:hover,
.site-footer-nav a:focus {
    color: var(--ocg-link);
    background: rgba(15, 93, 168, 0.08);
    outline: none;
}

.site-navigation .menu > li {
    position: relative;
}

.site-navigation > .menu > li {
    margin-top: 0;
}

.site-navigation .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
}

.site-navigation .sub-menu a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.4rem 0.65rem;
    white-space: nowrap;
}

@media (min-width: 900px) {
    .site-navigation > .menu {
        gap: 0.25rem;
    }

    .site-navigation > .menu > li > a {
        min-height: 2.5rem;
        padding: 0.6rem 0.75rem;
    }

    .site-navigation > .menu > li.current-menu-item > a,
    .site-navigation > .menu > li.current-menu-parent > a,
    .site-navigation > .menu > li.current_page_parent > a {
        color: var(--ocg-link);
        background: rgba(15, 93, 168, 0.1);
    }

    .site-navigation a:focus-visible {
        outline: 2px solid var(--ocg-link);
        outline-offset: 2px;
    }

    .site-navigation .menu-item-has-children > a::after {
        content: "";
        width: 0.4rem;
        height: 0.4rem;
        margin-left: 0.45rem;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: translateY(-0.12rem) rotate(45deg);
    }

    .site-navigation .sub-menu {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        width: max-content;
        min-width: 11rem;
        max-width: 18rem;
        display: none;
        background: var(--ocg-bg);
        border: 1px solid var(--ocg-border);
        border-radius: 10px;
        padding: 0.4rem;
        box-shadow: 0 12px 30px rgba(12, 27, 43, 0.14);
        z-index: 1000;
    }

    .site-navigation .sub-menu::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 0.4rem;
    }

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

    .site-navigation .sub-menu > li {
        position: relative;
        display: block;
    }

    .site-navigation .sub-menu a {
        padding: 0.5rem 0.65rem;
        border-radius: 6px;
    }

    .site-navigation .sub-menu .current-menu-item > a,
    .site-navigation .sub-menu .current_page_item > a {
        color: var(--ocg-link);
        background: rgba(15, 93, 168, 0.1);
    }

    .site-navigation .sub-menu .sub-menu {
        top: 0;
        left: 100%;
    }
}

.site-main {
    flex: 1;
    padding: 0 0 var(--ocg-space-6);
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-shell__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ocg-app-main {
    flex: 1;
    padding: 0;
    width: 100%;
}

.content-area {
    display: block;
}

.content-stack {
    display: grid;
    gap: var(--ocg-space-4);
}

.entry-card {
    background: var(--ocg-bg);
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    padding: var(--ocg-space-4);
    box-shadow: var(--ocg-shadow);
}

.blog-index-header {
    margin-bottom: var(--ocg-space-4);
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    gap: var(--ocg-space-3);
}

.blog-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--ocg-radius) - 2px);
    overflow: hidden;
    background: var(--ocg-surface);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more,
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ocg-link);
}

.blog-read-more:hover,
.blog-read-more:focus,
.blog-back-link:hover,
.blog-back-link:focus {
    text-decoration: underline;
}

.single-post-header {
    margin-bottom: var(--ocg-space-3);
}

.single-post-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--ocg-radius) - 2px);
    overflow: hidden;
    background: var(--ocg-surface);
    margin-bottom: var(--ocg-space-4);
}

.single-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-nav {
    margin-top: var(--ocg-space-4);
}

.entry-card-page {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.entry-card-module {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.entry-header {
    margin-bottom: var(--ocg-space-3);
}

.entry-title,
.archive-title {
    margin: 0;
    line-height: 1.2;
}

.entry-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.archive-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.entry-meta,
.archive-description,
.site-footer-copy,
.site-footer-nav {
    color: var(--ocg-text-soft);
    font-size: 0.95rem;
}

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

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content .ocg-section {
    margin-top: var(--ocg-space-6);
}

.entry-content .ocg-section:first-child {
    margin-top: 0;
}

.entry-content .ocg-section + .ocg-section {
    margin-top: var(--ocg-space-6);
}

.entry-content .ocg-section-cta {
    margin-top: var(--ocg-space-7);
}

.entry-content .ocg-section-cta:first-child {
    margin-top: 0;
}

.page-hero + .content-area .entry-content .ocg-section:first-child {
    margin-top: var(--ocg-space-7);
}

.entry-content .section + .section {
    margin-top: var(--ocg-space-6);
}

.entry-content .section-about {
    padding: var(--ocg-section-padding) 0;
    background: var(--ocg-surface);
}

.entry-content .section-about p {
    color: var(--ocg-text-soft);
}

.entry-content .section-about p:last-child {
    margin-bottom: 0;
}

.entry-content .section-about .container {
    width: min(100% - 2rem, var(--ocg-max-width));
    margin-inline: auto;
}

.ocg-page--contact .entry-content .ocg-section + .section,
.ocg-page--contact .entry-content .section + .ocg-section {
    margin-top: var(--ocg-space-6);
}

.ocg-page--contact .ocg-section-contact-info .ocg-container,
.ocg-page--contact .ocg-section-contact-form-embed .ocg-container {
    background: var(--ocg-surface);
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    padding: var(--ocg-space-5);
    box-shadow: var(--ocg-shadow);
}

.ocg-page--contact .ocg-section-contact-info h2,
.ocg-page--contact .ocg-section-contact-form-embed h2,
.ocg-page--contact .section.section-alt h2 {
    margin-bottom: var(--ocg-space-4);
}

.ocg-page--contact .ocg-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--ocg-space-3);
}

.ocg-page--contact .ocg-contact-list li {
    display: flex;
    flex-direction: column;
    gap: var(--ocg-space-1);
}

.ocg-page--contact .ocg-contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ocg-text-soft);
}

.ocg-page--contact .ocg-contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ocg-text);
    word-break: break-word;
}

.ocg-page--contact .section.section-alt {
    background: var(--ocg-surface);
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    padding: var(--ocg-section-padding) 0;
}

.ocg-page--contact .section.section-alt .container {
    width: min(100% - 2rem, var(--ocg-content-narrow));
    margin: 0 auto;
}

.ocg-page--home .ocg-section-intro .ocg-intro-secondary,
.home .ocg-section-intro .ocg-intro-secondary,
.front-page .ocg-section-intro .ocg-intro-secondary {
    margin-top: var(--ocg-space-5);
    padding-top: var(--ocg-space-4);
    border-top: 1px solid var(--ocg-divider);
}

.ocg-page--home .ocg-section-features .ocg-items {
    gap: var(--ocg-space-4);
}

.ocg-page--home .section-about {
    margin-top: var(--ocg-space-6);
    margin-bottom: var(--ocg-space-6);
}

.ocg-page--home .section.section-alt .cards-grid {
    margin-top: var(--ocg-space-4);
    gap: var(--ocg-space-4);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ocg-page--home .section.section-alt .testimonial-stack {
    margin-top: var(--ocg-space-4);
    gap: var(--ocg-space-4);
}

.ocg-page--home .section.section-alt .testimonial {
    padding-bottom: var(--ocg-space-3);
    border-bottom: 1px solid var(--ocg-border);
}

.ocg-page--home .section.section-alt .testimonial:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ocg-page--home .ocg-section-cta {
    margin-top: var(--ocg-space-7);
}

.ocg-page--service .ocg-section-service-intro .media img {
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-page--service .ocg-section-features .ocg-items {
    gap: var(--ocg-space-4);
}

.ocg-page--service .ocg-section-features .ocg-item.feature-card {
    background: var(--ocg-surface);
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
    overflow: hidden;
}

.ocg-page--service .ocg-section-features .feature-content {
    padding: var(--ocg-space-4);
}

.ocg-page--service .ocg-section-features--list .ocg-feature-item {
    padding: var(--ocg-space-3) 0;
    border-bottom: 1px solid var(--ocg-border);
}

.ocg-page--service .ocg-section-features--list .ocg-feature-item:last-child {
    border-bottom: 0;
}

.ocg-editorial-content {
    max-inline-size: none;
    margin-inline: 0;
    text-align: left;
}

.ocg-page--service .ocg-editorial-heading {
    margin: 0 0 var(--ocg-space-4);
}

.ocg-page--service .ocg-editorial-content h3 {
    margin: var(--ocg-space-5) 0 var(--ocg-space-2);
}

.ocg-page--service .ocg-editorial-content h4 {
    margin: var(--ocg-space-4) 0 var(--ocg-space-2);
    color: var(--ocg-text-secondary);
}

.ocg-page--service .ocg-section-service-detail-split {
    margin-top: var(--ocg-space-6);
}

.entry-content .ocg-section-service-detail-split {
    padding: var(--ocg-section-padding) 0;
    background: var(--ocg-surface-muted);
}

.ocg-service-detail-split-media,
.ocg-service-detail-split-content {
    min-width: 0;
}

.ocg-service-detail-split-media {
    aspect-ratio: 4 / 3;
    max-height: 32rem;
    overflow: hidden;
}

.ocg-page--service .ocg-service-detail-split-media {
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-service-detail-split-media .ocg-image-frame,
.ocg-service-detail-split-media img {
    width: 100%;
    height: 100%;
}

.ocg-service-detail-split-media img {
    object-fit: cover;
}

.ocg-page--service .ocg-service-detail-split-content .ocg-section-copy {
    color: var(--ocg-text-secondary);
}

.ocg-page--service .ocg-section-cta {
    margin-top: var(--ocg-space-7);
}

.ocg-page--about .ocg-section-company-story {
    margin-top: var(--ocg-space-6);
}

.ocg-page--about .ocg-section-company-story .ocg-container {
    width: min(100% - 2rem, var(--ocg-max-width));
    gap: var(--ocg-space-5);
    align-items: center;
}

.ocg-page--about .ocg-section-company-story h2,
.ocg-page--about .ocg-section-company-story p {
    max-width: var(--ocg-content-narrow);
}

.ocg-page--about .ocg-section-company-story p {
    margin-top: var(--ocg-space-3);
}

.ocg-page--about .ocg-section-company-story .media img {
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-page--about .ocg-section-cta {
    margin-top: var(--ocg-space-7);
}

.ocg-page--home .ocg-section-cta p,
.ocg-page--about .ocg-section-cta p,
.ocg-page--service .ocg-section-cta p {
    max-width: var(--ocg-content-narrow);
}

.ocg-page--home .ocg-section-cta .ocg-container,
.ocg-page--about .ocg-section-cta .ocg-container,
.ocg-page--service .ocg-section-cta .ocg-container {
    align-items: flex-start;
}

.entry-content .section-about .container.split,
.ocg-service-detail-split {
    display: grid;
    gap: var(--ocg-space-5);
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-content .section-about .split-content:only-child {
    grid-column: 1 / -1;
}

.entry-content .section-about .split-media img {
    width: 100%;
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.entry-content .wp-block-group,
.entry-content .wp-block-cover,
.entry-content .wp-block-columns,
.entry-content .wp-block-media-text,
.entry-content .wp-block-quote,
.entry-content .wp-block-table,
.entry-content form,
.entry-content .shortcode-wrapper,
.entry-content [class*="portal"],
.entry-content [class*="message"],
.entry-content [class*="draft"] {
    margin-bottom: var(--ocg-space-4);
}

.hero {
    padding: var(--ocg-space-6) 0;
    width: 100%;
}


.page-hero {
    position: relative;
    width: 100%;
    margin: 0 0 var(--ocg-space-6);
    background: #0c1b2b;
    overflow: hidden;
}

.page-hero-media {
    width: 100%;
    min-height: 420px;
    max-height: 560px;
    overflow: hidden;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.page-hero-inner {
    position: relative;
    padding: var(--ocg-space-7) 0;
}

.page-hero-content {
    max-width: 640px;
}

.page-hero-content h1 {
    margin-bottom: var(--ocg-space-2);
}

.page-hero-content .hero-subtext {
    margin: 0 0 var(--ocg-space-4);
    font-size: 1.1rem;
    color: #eef3f8;
}

.page-hero-overlay {
    color: #ffffff;
}

.page-hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.23) 40%,
        rgba(0, 0, 0, 0.43) 100%
    );
    z-index: 1;
}

.page-hero-overlay .page-hero-media {
    position: absolute;
    inset: 0;
    max-height: none;
    z-index: 0;
}

.page-hero-overlay .page-hero-inner {
    min-height: 420px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.page-hero-overlay .page-hero-media img {
    filter: saturate(0.95);
}

.page-hero-overlay-center .page-hero-inner {
    justify-content: center;
    text-align: center;
}

.page-hero-overlay-center .page-hero-content {
    margin: 0 auto;
}


.page-hero ~ .content-area .entry-content .hero {
    display: none;
}

.button,
.entry-content .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: var(--ocg-button-padding);
    border-radius: var(--ocg-button-radius);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    background: var(--ocg-link);
    color: #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    box-shadow: var(--ocg-shadow);
}

.button:hover,
.button:focus {
    filter: brightness(0.97);
    transform: translateY(-1px);
    box-shadow: var(--ocg-shadow-hover);
    text-decoration: none;
}

.button.button-light {
    background: #ffffff;
    color: #0c1b2b;
    border-color: rgba(255, 255, 255, 0.6);
}

.site-footer {
    border-top: 1px solid var(--ocg-border);
    background: var(--ocg-surface);
    padding: var(--ocg-space-5) 0;
}

.site-footer-inner {
    gap: var(--ocg-space-4);
}

.site-footer-copy p {
    margin: 0;
    font-weight: 600;
}

.site-footer-logo.site-logo {
    --ocg-logo-box-width: 17rem;
    --ocg-logo-box-height: 5rem;
    margin-bottom: 1.15rem;
}

.site-footer-logo.site-logo--wide { --ocg-logo-box-width: 20rem; --ocg-logo-box-height: 5rem; }
.site-footer-logo.site-logo--square { --ocg-logo-box-width: 5.5rem; --ocg-logo-box-height: 5.5rem; }
.site-footer-logo.site-logo--tall { --ocg-logo-box-width: 4.25rem; --ocg-logo-box-height: 6rem; }

.site-footer-title--fallback {
    font-weight: 800;
    text-wrap: balance;
}

@media (max-width: 860px) {
    .site-logo--wide { --ocg-logo-box-width: 10rem; --ocg-logo-box-height: 2.9rem; }
    .site-logo--standard { --ocg-logo-box-width: 8.5rem; --ocg-logo-box-height: 3.1rem; }
    .site-logo--square { --ocg-logo-box-width: 3.1rem; --ocg-logo-box-height: 3.1rem; }
    .site-logo--tall { --ocg-logo-box-width: 2.6rem; --ocg-logo-box-height: 3.2rem; }
    .site-footer-logo.site-logo { --ocg-logo-box-width: 14rem; --ocg-logo-box-height: 4.5rem; }
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .site-header-inner {
        flex-wrap: wrap;
    }

    .site-brand-text {
        max-width: 100%;
    }

    .site-title,
    .site-description {
        white-space: normal;
    }

    .site-navigation > ul,
    .site-navigation > .menu {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .page-hero-inner {
        padding: var(--ocg-space-6) 0;
    }
}

@media (max-width: 520px) {
    .site-header-inner { flex-wrap: nowrap; }
    .branding { width: calc(100% - 5rem); overflow: hidden; }
    .site-brand-text { flex: 1 1 auto; min-width: 0; overflow: hidden; }
    .site-logo-placeholder { flex: 0 0 44px; }
    .nav-toggle { flex: 0 0 auto; }
    .site-brand-text .site-title { white-space: nowrap; }
    .site-brand-text .site-description { display: none; }
}

.page-hero.variant-overlay .media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero .container {
    width: min(100% - 2rem, var(--ocg-max-width));
    margin-inline: auto;
}

.hero.layout-row .container,
.hero.layout-stacked .container {
    display: flex;
    gap: var(--ocg-space-5);
    align-items: center;
}

.hero.layout-row .container {
    flex-direction: row;
}

.hero.layout-row.image-left .container {
    flex-direction: row-reverse;
}

.hero.layout-stacked .container {
    flex-direction: column;
}

.hero.layout-row .content,
.hero.layout-stacked .content {
    flex: 1;
    max-width: 38rem;
}

.hero.layout-row .media,
.hero.layout-stacked .media {
    flex: 1;
    aspect-ratio: 12 / 5;
    max-height: 450px;
}

.hero .eyebrow {
    margin: 0 0 var(--ocg-space-2);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ocg-text-soft);
}

.hero h1 {
    margin-bottom: var(--ocg-space-3);
}

.hero .hero-subtext {
    margin: 0 0 var(--ocg-space-4);
    color: var(--ocg-text-soft);
    max-width: 34rem;
}

.hero .button {
    margin-top: var(--ocg-space-2);
}

.home .entry-content > .hero:first-child,
.front-page .entry-content > .hero:first-child {
    position: relative;
    width: 100%;
    min-height: 34rem;
    display: grid;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.home .entry-content > .hero:first-child::before,
.front-page .entry-content > .hero:first-child::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 15, 27, 0.82) 0%, rgba(5, 15, 27, 0.58) 48%, rgba(5, 15, 27, 0.2) 100%);
    pointer-events: none;
}

.home .entry-content > .hero:first-child .container,
.front-page .entry-content > .hero:first-child .container {
    position: static;
    z-index: 2;
    width: min(100% - 2rem, var(--ocg-max-width));
    min-height: 34rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
}

.home .entry-content > .hero:first-child .content,
.front-page .entry-content > .hero:first-child .content {
    position: relative;
    z-index: 2;
    max-width: 38rem;
}

.home .entry-content > .hero:first-child .media,
.front-page .entry-content > .hero:first-child .media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
}

.home .entry-content > .hero:first-child .media img,
.front-page .entry-content > .hero:first-child .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.home .entry-content > .hero:first-child .hero-subtext,
.front-page .entry-content > .hero:first-child .hero-subtext,
.home .entry-content > .hero:first-child .eyebrow,
.front-page .entry-content > .hero:first-child .eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.ocg-section-intro--centered_narrow .ocg-container {
    text-align: center;
}

.ocg-section-intro--centered_narrow p {
    margin-left: auto;
    margin-right: auto;
}

.ocg-section-features--list .ocg-feature-list {
    display: flex;
    flex-direction: column;
    margin-top: var(--ocg-space-3);
}

.ocg-section-features--list h2 {
    margin-bottom: var(--ocg-space-3);
    font-size: clamp(1.75rem, 2vw + 1rem, 2.4rem);
    letter-spacing: 0.01em;
}

.ocg-section-features--list .ocg-feature-item {
    padding: calc(var(--ocg-space-3) + 0.25rem) 0;
    border-bottom: 1px solid var(--ocg-divider);
    background: transparent;
}

.ocg-section-features--list .ocg-feature-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ocg-section-features--list .ocg-feature-item h3 {
    margin: 0 0 var(--ocg-space-1);
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

.ocg-section-features--list .ocg-feature-item p {
    margin: 0;
    color: var(--ocg-text-soft);
    line-height: 1.7;
}

.ocg-section-cta {
    padding: var(--ocg-section-padding) 0;
}

.ocg-section-cta .ocg-container {
    background: var(--ocg-surface);
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    padding: var(--ocg-space-5);
    display: flex;
    flex-direction: column;
    gap: var(--ocg-space-2);
}

.ocg-section-cta .button {
    align-self: flex-start;
    padding: var(--ocg-button-padding);
    border-radius: var(--ocg-button-radius);
}

.ocg-section-cta--banner {
    background: #0c1b2b;
    color: #ffffff;
}

.ocg-section-cta--banner .ocg-container {
    background: transparent;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ocg-space-4);
    flex-wrap: wrap;
}

.ocg-section-cta--banner .button {
    background: #ffffff;
    color: #0c1b2b;
}

.hero.layout-row .media img,
.hero.layout-stacked .media img {
    width: 100%;
    height: 100%;
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
    display: block;
    object-fit: cover;
}

.ocg-section.layout-image-left .ocg-container,
.ocg-section.layout-image-right .ocg-container,
.ocg-section.layout-stacked .ocg-container {
    display: grid;
    gap: var(--ocg-space-4);
    align-items: start;
}

.ocg-section.layout-image-left .ocg-container,
.ocg-section.layout-image-right .ocg-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.ocg-section.image-left .media {
    order: 0;
}

.ocg-section.image-left .content {
    order: 1;
}

.ocg-section.image-right .content {
    order: 0;
}

.ocg-section.image-right .media {
    order: 1;
}

.ocg-section.image-top .media {
    order: 0;
}

.ocg-section.image-top .content {
    order: 1;
}

.ocg-section.image-bottom .content {
    order: 0;
}

.ocg-section.image-bottom .media {
    order: 1;
}

.ocg-section .media img {
    display: block;
    width: 100%;
    height: auto;
}

.ocg-items {
    display: grid;
    gap: var(--ocg-space-4);
}

.ocg-items-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ocg-items-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ocg-items-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ocg-section-features .ocg-item {
    min-width: 0;
    grid-column: auto;
}

.ocg-item.feature-card {
    border: 1px solid var(--ocg-border-color);
    border-radius: 12px;
    padding: calc(var(--ocg-space-4) + 0.25rem);
    background: var(--ocg-surface, #fff);
    display: flex;
    flex-direction: column;
    gap: var(--ocg-space-3);
    box-shadow: var(--ocg-card-shadow);
}

.feature-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: calc(var(--ocg-radius) - 2px);
    background: var(--ocg-surface-muted);
}

.feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.feature-media.is-empty {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06));
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-content h3 {
    margin: 0;
}

.feature-content p {
    margin: 0;
    color: var(--ocg-text-muted);
}

.feature-content .button {
    margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
    .ocg-item.feature-card {
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .ocg-item.feature-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--ocg-shadow-hover);
    }
}

@media (max-width: 1024px) {
    .page-hero {
        display: grid;
    }

    .page-hero .page-hero-media,
    .page-hero .page-hero-inner {
        grid-area: 1 / 1;
    }

    .page-hero .page-hero-media {
        position: absolute;
        inset: 0;
        max-height: none;
        min-height: 360px;
    }

    .page-hero .page-hero-inner {
        position: relative;
        z-index: 1;
        padding: var(--ocg-space-6) 0;
        min-height: 360px;
    }

    .home .hero,
    .front-page .hero {
        position: relative;
        color: #ffffff;
        overflow: hidden;
    }

    .home .hero::before,
    .front-page .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 0;
    }

    .home .hero .container,
    .front-page .hero .container {
        position: relative;
        z-index: 1;
        min-height: 360px;
        display: flex;
        align-items: center;
    }

    .home .hero .content,
    .front-page .hero .content {
        position: relative;
        z-index: 1;
    }

    .home .hero .media,
    .front-page .hero .media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .home .hero .media img,
    .front-page .hero .media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    .home .hero .hero-subtext,
    .front-page .hero .hero-subtext,
    .home .hero .eyebrow,
    .front-page .hero .eyebrow {
        color: rgba(255, 255, 255, 0.85);
    }
}

@media (max-width: 768px) {
    .hero.layout-row .container {
        flex-direction: column;
    }

    .home .hero .container,
    .front-page .hero .container {
        flex-direction: column;
    }

    .home .entry-content > .hero:first-child,
    .front-page .entry-content > .hero:first-child,
    .home .entry-content > .hero:first-child .container,
    .front-page .entry-content > .hero:first-child .container {
        min-height: 30rem;
    }

    .home .entry-content > .hero:first-child .container,
    .front-page .entry-content > .hero:first-child .container {
        align-items: flex-start;
        justify-content: center;
    }

    .home .entry-content > .hero:first-child::before,
    .front-page .entry-content > .hero:first-child::before {
        background: linear-gradient(180deg, rgba(5, 15, 27, 0.7) 0%, rgba(5, 15, 27, 0.78) 100%);
    }

    .entry-content .section-about .container.split,
    .ocg-service-detail-split {
        grid-template-columns: 1fr;
    }

    .ocg-section.layout-image-left .ocg-container,
    .ocg-section.layout-image-right .ocg-container {
        grid-template-columns: 1fr;
    }

    .ocg-items-count-2,
    .ocg-items-count-3,
    .ocg-items-count-4,
    .ocg-items-count-5,
    .ocg-items-count-6 {
        grid-template-columns: 1fr;
    }

    .ocg-service-detail-split-media {
        aspect-ratio: 16 / 10;
        max-height: 18rem;
    }

    .ocg-page--home .ocg-section-trust .cards-grid,
    .home .ocg-section-trust .cards-grid,
    .front-page .ocg-section-trust .cards-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(85%, 1fr);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 7.5%;
        padding-bottom: var(--ocg-space-2);
        -webkit-overflow-scrolling: touch;
    }

    .ocg-page--home .ocg-section-trust .cards-grid .card,
    .home .ocg-section-trust .cards-grid .card,
    .front-page .ocg-section-trust .cards-grid .card {
        scroll-snap-align: center;
    }

    .ocg-section-features--list .ocg-feature-list {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .ocg-section-features--list .ocg-feature-item {
        width: 100%;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .ocg-items-count-2,
    .ocg-items-count-3,
    .ocg-items-count-4,
    .ocg-items-count-5,
    .ocg-items-count-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ocg-items-count-5 .ocg-item {
        grid-column: auto;
    }
}

@media (min-width: 1025px) {
    .ocg-items-count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ocg-items-count-3,
    .ocg-items-count-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ocg-items-count-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ocg-items-count-5 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-flow: row dense;
    }

    .ocg-items-count-5 .ocg-item {
        grid-column: span 2;
    }

    .ocg-items-count-5 .ocg-item:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .ocg-items-count-5 .ocg-item:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.entry-content iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

.entry-content .alignwide,
.entry-content .alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.entry-content img,
.entry-content figure,
.entry-content iframe,
.entry-content video {
    max-width: 100%;
    height: auto;
}

.ocg-map-hero {
    width: 100%;
    height: clamp(18rem, 40vw, 34rem);
    overflow: hidden;
}

.ocg-map-hero .ocg-map-hero__frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-width: none;
    border: 0;
}

.page-hero + .content-area .entry-content .ocg-section-contact-content:first-child {
    margin-top: 0;
}

.ocg-contact-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ocg-space-6);
    align-items: start;
    padding-block-start: var(--ocg-section-padding);
}

.page-hero + .content-area .entry-content .ocg-section-contact-content:first-child .ocg-contact-content {
    padding-block-start: 0;
}

.ocg-contact-content__info,
.ocg-contact-content__form {
    min-width: 0;
}

@media (max-width: 768px) {
    .ocg-contact-content {
        grid-template-columns: 1fr;
    }
}

.ocg-module-page .site-main {
    padding: 0;
}

.ocg-module-page .content-area {
    width: 100%;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem;
    border: 1px solid var(--ocg-border);
    text-align: left;
}

.entry-content input,
.entry-content select,
.entry-content textarea,
.entry-content button {
    font: inherit;
}

.entry-content input,
.entry-content select,
.entry-content textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--ocg-border);
    border-radius: 8px;
    padding: 0.75rem;
}

.entry-content button:not([class^="ocg-"]):not([class*=" ocg-"]):not([id^="ocg_"]),
.entry-content .button:not([class^="ocg-"]):not([class*=" ocg-"]):not([id^="ocg_"]):not(.ocg-animal-modern .button):not(.ocg-animal-playful .button),
.entry-content input[type="submit"]:not([class^="ocg-"]):not([class*=" ocg-"]):not([id^="ocg_"]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    border: 1px solid var(--ocg-text);
    background: var(--ocg-text);
    color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.portal-shell,
.portal-card,
.ocg-message-card,
.ocg-draft-editor-shell,
.ocg-ticket-card {
    width: 100%;
    max-width: 100%;
}

.site-footer {
    border-top: 1px solid var(--ocg-border);
    background: var(--ocg-surface);
    margin-top: auto;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(14rem, 1.2fr) minmax(12rem, 1fr) auto;
    align-items: start;
    gap: var(--ocg-space-5);
    padding-top: var(--ocg-space-5);
    padding-bottom: var(--ocg-space-4);
}

.site-footer-title {
    margin: 0;
    color: var(--ocg-text);
    font-weight: 700;
}

.site-footer-description {
    max-width: 30rem;
    margin: var(--ocg-space-2) 0 0;
    color: var(--ocg-text-soft);
}

.site-footer-nav > ul,
.site-footer-nav > .menu {
    align-items: flex-start;
    flex-wrap: wrap;
}

.site-footer-contact a {
    color: inherit;
    font-weight: 600;
}

.site-footer-copy {
    grid-column: 1 / -1;
    padding-top: var(--ocg-space-3);
    border-top: 1px solid var(--ocg-border);
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.screen-reader-text:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100000;
    background: #fff;
    color: #000;
    padding: 0.75rem 1rem;
}

.ocg-page--home .ocg-section-trust .section-title,
.ocg-page--home .ocg-section-testimonials .section-title {
    font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ocg-text-soft);
    font-weight: 700;
    margin-bottom: var(--ocg-space-3);
}

.ocg-page--home .ocg-section-trust .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--ocg-space-4);
}

@media (min-width: 769px) {
    .ocg-page--home .ocg-section-trust .cards-grid,
    .home .ocg-section-trust .cards-grid,
    .front-page .ocg-section-trust .cards-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: clamp(260px, 28vw, 360px);
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scroll-padding-inline: var(--ocg-space-4);
        padding-bottom: var(--ocg-space-2);
        -webkit-overflow-scrolling: touch;
    }

    .ocg-page--home .ocg-section-trust .cards-grid .card,
    .home .ocg-section-trust .cards-grid .card,
    .front-page .ocg-section-trust .cards-grid .card {
        scroll-snap-align: start;
    }
}

.ocg-page--home .ocg-section-trust .card {
    border-radius: 16px;
    border: 1px solid var(--ocg-border);
    background: var(--ocg-bg);
    padding: var(--ocg-space-4);
    box-shadow: var(--ocg-shadow);
}

.ocg-page--home .ocg-section-trust .card h3 {
    margin: 0 0 var(--ocg-space-2);
    font-size: 1.1rem;
}

.ocg-page--home .ocg-section-testimonials .testimonial-stack {
    display: grid;
    gap: var(--ocg-space-4);
}

.ocg-page--home .ocg-section-testimonials .testimonial {
    border-radius: 18px;
    padding: var(--ocg-space-4);
    background: var(--ocg-surface);
    border: 1px solid var(--ocg-border);
    position: relative;
    box-shadow: var(--ocg-card-shadow);
}

.ocg-page--home .ocg-section-testimonials .testimonial::before {
    content: "“";
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 3rem;
    color: var(--ocg-text-soft);
}

.ocg-page--home .ocg-section-testimonials .testimonial p {
    margin-bottom: var(--ocg-space-3);
    font-size: 1.05rem;
}

.ocg-page--home .ocg-section-testimonials .testimonial strong {
    display: block;
    font-weight: 700;
    color: var(--ocg-text);
}

.ocg-section-service-area .ocg-service-area-text {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--ocg-text-soft);
}

@media (max-width: 899px) {
    .site-header-inner,
    .site-footer-inner {
        flex-wrap: wrap;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .site-footer-copy {
        grid-column: 1;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-navigation {
        width: 100%;
        display: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .site-navigation.is-open {
        display: block;
    }

    .site-navigation > ul,
    .site-navigation > .menu,
    .site-footer-nav > ul,
    .site-footer-nav > .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-navigation .sub-menu {
        position: static;
        display: block;
        width: 100%;
        max-width: none;
        border: 0;
        box-shadow: none;
        padding-left: 1rem;
    }

    .site-main {
        padding: var(--ocg-space-4) 0;
    }

    .entry-card {
        padding: var(--ocg-space-3);
    }

    .entry-card-page {
        padding: 0;
    }
}

@media (max-width: 520px) {
    .site-header-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
    .branding { width: auto; }
    .site-navigation { grid-column: 1 / -1; }
}

/* Animal: editorial presentation; governed by docs/animal-contract.md. */
.ocg-animal-editorial {
    --ocg-font-heading: Georgia, "Times New Roman", serif;
    --ocg-type-h1: clamp(2rem, 2.5vw + 1rem, 3rem);
    --ocg-type-h2: clamp(1.65rem, 1.25vw + 1.15rem, 2.05rem);
    --ocg-type-h3: clamp(1.3rem, 1.2rem + 0.3vw, 1.5rem);
    --ocg-leading-tight: 1.08;
    --ocg-leading-heading: 1.18;
    --ocg-leading-body: 1.7;
    --ocg-weight-bold: 600;
    --ocg-text-primary: #17202a;
    --ocg-text-secondary: #52606d;
    --ocg-space-heading-after: 1rem;
    --ocg-space-paragraph-after: 1.35rem;
    --ocg-prose-measure: 68ch;
    --ocg-surface: #f7f5f1;
    --ocg-border: #d8d2c8;
    --ocg-divider: #d8d2c8;
    --ocg-radius: 0.25rem;
    --ocg-shadow: 0 0.5rem 1.5rem rgba(23, 32, 42, 0.06);
}

.ocg-animal-editorial h1,
.ocg-animal-editorial h2,
.ocg-animal-editorial h3,
.ocg-animal-editorial h4 {
    letter-spacing: -0.018em;
}

.ocg-animal-editorial h4,
.ocg-animal-editorial .eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ocg-animal-editorial a:not(.button) {
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.ocg-animal-editorial .button {
    border-radius: 0.15rem;
    box-shadow: none;
    letter-spacing: 0.025em;
}

.ocg-animal-editorial .feature-card {
    background: var(--ocg-surface);
    border-color: var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-editorial .feature-card h3 {
    color: var(--ocg-text-primary);
}

.ocg-animal-editorial .feature-card p {
    color: var(--ocg-text-secondary);
}

.ocg-animal-editorial .section-about img,
.ocg-animal-editorial .ocg-service-detail-split-media {
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-editorial .ocg-section-cta .ocg-container {
    background: var(--ocg-surface);
    border-color: var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: none;
}

/* Animal: modern presentation; governed by docs/animal-contract.md. */
.ocg-animal-modern {
    --ocg-font-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ocg-font-heading: var(--ocg-font-body);
    --ocg-type-h1: clamp(2rem, 2.75vw + 1rem, 3.125rem);
    --ocg-type-h2: clamp(1.6rem, 1.35vw + 1.15rem, 2.1rem);
    --ocg-type-h3: clamp(1.25rem, 1.15rem + 0.3vw, 1.45rem);
    --ocg-type-h4: 1.0625rem;
    --ocg-leading-tight: 1.04;
    --ocg-leading-heading: 1.16;
    --ocg-leading-body: 1.55;
    --ocg-weight-medium: 600;
    --ocg-weight-bold: 700;
    --ocg-text-primary: #101828;
    --ocg-text-secondary: #475467;
    --ocg-link: #175cd3;
    --ocg-space-heading-after: 0.875rem;
    --ocg-space-paragraph-after: 1.125rem;
    --ocg-prose-measure: 65ch;
    --ocg-surface: #f8fafc;
    --ocg-border: #cbd5e1;
    --ocg-divider: #d0d5dd;
    --ocg-radius: 0.375rem;
    --ocg-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    --ocg-shadow-hover: 0 3px 8px rgba(16, 24, 40, 0.08);
}

.ocg-animal-modern h1,
.ocg-animal-modern h2,
.ocg-animal-modern h3,
.ocg-animal-modern h4 {
    letter-spacing: -0.025em;
}

.ocg-animal-modern h4,
.ocg-animal-modern .eyebrow {
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ocg-animal-modern a:not(.button) {
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.22em;
}

.ocg-animal-modern .button {
    background: var(--ocg-link);
    border-color: var(--ocg-link);
    border-radius: 0.25rem;
    box-shadow: none;
    color: #ffffff;
    font-weight: var(--ocg-weight-bold);
    letter-spacing: 0.01em;
}

.ocg-animal-modern .button:hover,
.ocg-animal-modern .button:focus {
    background: #0b4a9e;
    border-color: #0b4a9e;
    box-shadow: var(--ocg-shadow-hover);
}

.ocg-animal-modern .ocg-item.feature-card {
    background: var(--ocg-surface);
    border-color: var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-modern .feature-card h3 {
    color: var(--ocg-text-primary);
}

.ocg-animal-modern .feature-card p {
    color: var(--ocg-text-secondary);
}

.ocg-animal-modern .section-about img,
.ocg-animal-modern .ocg-service-detail-split-media {
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-modern .ocg-section-cta .ocg-container {
    background: var(--ocg-text-primary);
    border-color: var(--ocg-text-primary);
    border-radius: var(--ocg-radius);
    box-shadow: none;
}

.ocg-animal-modern .ocg-section-cta h2,
.ocg-animal-modern .ocg-section-cta p {
    color: #ffffff;
}

/* Animal: playful presentation; governed by docs/animal-contract.md. */
.ocg-animal-playful {
    --ocg-font-body: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
    --ocg-font-heading: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
    --ocg-type-h1: clamp(2rem, 2.45vw + 1rem, 3rem);
    --ocg-type-h2: clamp(1.65rem, 1.3vw + 1.15rem, 2.1rem);
    --ocg-type-h3: clamp(1.3rem, 1.2rem + 0.3vw, 1.5rem);
    --ocg-type-h4: 1.0625rem;
    --ocg-leading-tight: 1.1;
    --ocg-leading-heading: 1.22;
    --ocg-leading-body: 1.68;
    --ocg-weight-medium: 600;
    --ocg-weight-bold: 700;
    --ocg-text-primary: #3b2f2a;
    --ocg-text-secondary: #65534b;
    --ocg-link: #a6384b;
    --ocg-space-heading-after: 1rem;
    --ocg-space-paragraph-after: 1.25rem;
    --ocg-prose-measure: 70ch;
    --ocg-surface: #fff8ed;
    --ocg-border: #e3c8a4;
    --ocg-divider: #ead7bf;
    --ocg-radius: 1rem;
    --ocg-shadow: 0 0.4rem 1.25rem rgba(92, 61, 43, 0.09);
    --ocg-shadow-hover: 0 0.6rem 1.5rem rgba(92, 61, 43, 0.14);
}

.ocg-animal-playful h1,
.ocg-animal-playful h2,
.ocg-animal-playful h3,
.ocg-animal-playful h4 {
    letter-spacing: -0.012em;
}

.ocg-animal-playful h4,
.ocg-animal-playful .eyebrow {
    color: #8c3847;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.ocg-animal-playful a:not(.button) {
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.24em;
}

.ocg-animal-playful .button {
    background: var(--ocg-link);
    border-color: var(--ocg-link);
    border-radius: 0.75rem;
    box-shadow: var(--ocg-shadow);
    color: #ffffff;
    font-weight: var(--ocg-weight-bold);
    letter-spacing: 0.015em;
}

.ocg-animal-playful .button:hover,
.ocg-animal-playful .button:focus {
    background: #802b3b;
    border-color: #802b3b;
    box-shadow: var(--ocg-shadow-hover);
}

.ocg-animal-playful .ocg-item.feature-card {
    background: var(--ocg-surface);
    border-color: var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-playful .feature-card h3 {
    color: var(--ocg-text-primary);
}

.ocg-animal-playful .feature-card p {
    color: var(--ocg-text-secondary);
}

.ocg-animal-playful .section-about img,
.ocg-animal-playful .ocg-service-detail-split-media {
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-playful .ocg-section-cta .ocg-container {
    background: #f9dfb7;
    border-color: #dcb37a;
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-animal-playful .ocg-section-cta h2,
.ocg-animal-playful .ocg-section-cta p {
    color: var(--ocg-text-primary);
}

/* Neutral/default visual baseline. Animal presentations remain separately governed. */
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) {
    --ocg-bg: #fbfcfd;
    --ocg-surface: #f2f5f7;
    --ocg-surface-raised: #ffffff;
    --ocg-border: #dce3e8;
    --ocg-border-color: rgba(15, 31, 46, 0.11);
    --ocg-text: #102231;
    --ocg-text-soft: #51616f;
    --ocg-text-muted: #51616f;
    --ocg-link: #086b76;
    --ocg-max-width: 1180px;
    --ocg-content-narrow: 760px;
    --ocg-prose-measure: 68ch;
    --ocg-space-6: 3.75rem;
    --ocg-space-7: 5.5rem;
    --ocg-section-padding: clamp(3rem, 6vw, 5.75rem);
    --ocg-radius: 18px;
    --ocg-button-radius: 999px;
    --ocg-button-padding: 0.82rem 1.35rem;
    --ocg-shadow: 0 1px 2px rgba(15, 31, 46, 0.04), 0 12px 34px rgba(15, 31, 46, 0.07);
    --ocg-shadow-hover: 0 18px 44px rgba(15, 31, 46, 0.14);
    --ocg-card-shadow: 0 1px 2px rgba(15, 31, 46, 0.04), 0 10px 28px rgba(15, 31, 46, 0.07);
    --ocg-type-h1: clamp(2.6rem, 4.5vw + 0.5rem, 4.75rem);
    --ocg-type-h2: clamp(1.85rem, 2.2vw + 0.8rem, 3rem);
    --ocg-type-h3: clamp(1.3rem, 1.1rem + 0.55vw, 1.7rem);
    --ocg-leading-tight: 0.98;
    --ocg-leading-heading: 1.12;
    --ocg-leading-body: 1.72;
    --ocg-space-heading-after: 1rem;
    --ocg-space-paragraph-after: 1.4rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) h1,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) h2,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) h3 {
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) p,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) li {
    text-wrap: pretty;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--ocg-link) 70%, white);
    outline-offset: 3px;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-header {
    background: rgba(251, 252, 253, 0.94);
    border-bottom: 1px solid rgba(15, 31, 46, 0.07);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-header-inner {
    min-height: 82px;
    padding-block: 0.9rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: #102b3a;
    box-shadow: 0 7px 18px rgba(16, 43, 58, 0.2);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-title {
    font-size: 1.08rem;
    letter-spacing: -0.015em;
}

@media (min-width: 900px) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-navigation > .menu {
        gap: 0.15rem;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-navigation > .menu > li > a {
        min-height: 2.75rem;
        padding: 0.7rem 0.85rem;
        font-size: 0.9rem;
        letter-spacing: 0.01em;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-navigation .sub-menu {
        min-width: 13rem;
        padding: 0.55rem;
        border-color: rgba(15, 31, 46, 0.1);
        border-radius: 14px;
        box-shadow: 0 18px 50px rgba(15, 31, 46, 0.16);
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-navigation .sub-menu a {
        padding: 0.65rem 0.75rem;
        border-radius: 9px;
    }
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero {
    margin-bottom: 0;
    background: #0d2532;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-overlay::before {
    background: linear-gradient(90deg, rgba(5, 20, 30, 0.86) 0%, rgba(5, 20, 30, 0.58) 48%, rgba(5, 20, 30, 0.18) 100%);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-overlay .page-hero-inner {
    min-height: clamp(24rem, 48vw, 36rem);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-content {
    max-width: 47rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-content h1 {
    max-width: 14ch;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-content .hero-subtext {
    max-width: 42rem;
    margin-top: 1.25rem;
    font-size: clamp(1.05rem, 1rem + 0.35vw, 1.3rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child .container,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child .container {
    min-height: clamp(34rem, 65vh, 46rem);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child::before,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child::before {
    background: linear-gradient(90deg, rgba(5, 20, 30, 0.88) 0%, rgba(5, 20, 30, 0.62) 46%, rgba(5, 20, 30, 0.12) 100%);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child .content,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child .content {
    max-width: 45rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .entry-content .ocg-section {
    margin-top: 0;
    padding-block: var(--ocg-section-padding);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .entry-content .ocg-section + .ocg-section {
    margin-top: 0;
    border-top: 1px solid rgba(15, 31, 46, 0.07);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-section-editorial .ocg-container {
    width: min(100% - 2rem, var(--ocg-content-narrow));
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-editorial-content > h2:not(:first-child) {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--ocg-border);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-editorial-content > h3 {
    margin-top: 2.4rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-editorial-content ul,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-editorial-content ol {
    padding-left: 1.25rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-section-features,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-section-child-grid {
    background: linear-gradient(180deg, #f1f5f7 0%, #f8fafb 100%);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-items {
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-item.feature-card,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child {
    overflow: hidden;
    padding: 0;
    background: var(--ocg-surface-raised);
    border: 1px solid var(--ocg-border-color);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-card-shadow);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .feature-media,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child__media {
    aspect-ratio: 16 / 10;
    border-radius: 0;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .feature-media img,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child__media img {
    transition: transform 350ms ease;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .feature-content,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child__content {
    padding: clamp(1.25rem, 2vw, 1.75rem);
    gap: 0.7rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child__content h3 a {
    color: var(--ocg-text);
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-item.feature-card:hover,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child:hover {
        transform: translateY(-5px);
        border-color: rgba(8, 107, 118, 0.24);
        box-shadow: var(--ocg-shadow-hover);
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-item.feature-card:hover img,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-summary-child:hover img {
        transform: scale(1.025);
    }
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .entry-content .ocg-section-service-detail-split {
    background: #102b3a;
    color: #ffffff;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 5vw, 5rem);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split-media {
    border-radius: var(--ocg-radius);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split-content .ocg-section-copy,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split-content p {
    color: rgba(255, 255, 255, 0.78);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-section-cta .ocg-container {
    padding: clamp(2rem, 5vw, 4rem);
    background: #e5f1f1;
    border: 1px solid rgba(8, 107, 118, 0.14);
    border-radius: calc(var(--ocg-radius) + 6px);
    box-shadow: none;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .button,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .entry-content .button {
    box-shadow: 0 8px 20px rgba(8, 107, 118, 0.2);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-contact-content {
    gap: clamp(2rem, 6vw, 6rem);
    padding-block: var(--ocg-section-padding);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-contact-content__info {
    position: sticky;
    top: calc(var(--ocg-header-height) + 2rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: #102b3a;
    color: #ffffff;
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-shadow);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-contact-content__info .ocg-contact-label {
    color: rgba(255, 255, 255, 0.64);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-contact-content__info .ocg-contact-value {
    color: #ffffff;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-contact-content__form {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--ocg-surface-raised);
    border: 1px solid var(--ocg-border);
    border-radius: var(--ocg-radius);
    box-shadow: var(--ocg-card-shadow);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer {
    padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
    background: #0b202c;
    color: rgba(255, 255, 255, 0.76);
    border-top: 0;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-title,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer a {
    color: #ffffff;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-description,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-copy,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-nav {
    color: rgba(255, 255, 255, 0.64);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-copy {
    border-top-color: rgba(255, 255, 255, 0.13);
}

@media (max-width: 899px) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-navigation.is-open {
        padding: 0.75rem;
        background: var(--ocg-surface-raised);
        border: 1px solid var(--ocg-border);
        border-radius: 14px;
        box-shadow: var(--ocg-shadow);
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-navigation a {
        width: 100%;
        min-height: 44px;
        padding: 0.7rem 0.75rem;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-contact-content__info {
        position: static;
    }
}

@media (max-width: 768px) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) {
        --ocg-space-6: 3rem;
        --ocg-space-7: 4rem;
        --ocg-section-padding: 3.5rem;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child .container,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child .container {
        min-height: 32rem;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-overlay::before {
        background: linear-gradient(180deg, rgba(5, 20, 30, 0.48), rgba(5, 20, 30, 0.82));
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split {
        grid-template-columns: 1fr;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-inner {
        gap: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) *,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) *::before,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}

/* Neutral/default composition refinement. */
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-overlay::before,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child::before,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child::before {
    background: linear-gradient(
        90deg,
        rgba(5, 20, 30, 0.9) 0%,
        rgba(5, 20, 30, 0.76) 24%,
        rgba(5, 20, 30, 0.3) 48%,
        rgba(5, 20, 30, 0.08) 64%,
        rgba(5, 20, 30, 0) 76%
    );
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child + .ocg-section-editorial .ocg-container,
.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child + .ocg-section-editorial .ocg-container {
    width: min(100% - 2rem, 58rem);
}

@media (min-width: 769px) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-items:has(> .ocg-item:only-child) {
        grid-template-columns: minmax(0, 35rem);
        justify-content: center;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-items:has(> .ocg-item + .ocg-item:last-child):not(:has(> .ocg-item + .ocg-item + .ocg-item)) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 58rem;
        margin-inline: auto;
    }
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split {
    align-items: stretch;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split-media {
    width: 100%;
    height: 100%;
    min-height: clamp(22rem, 42vw, 34rem);
    max-height: 44rem;
    aspect-ratio: auto;
    align-self: center;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-inner {
    grid-template-columns: minmax(16rem, 1.5fr) minmax(14rem, 0.9fr) minmax(12rem, 0.65fr);
    gap: clamp(2rem, 5vw, 5rem);
    padding-top: clamp(0.5rem, 1vw, 1rem);
    padding-bottom: 1.75rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-title {
    max-width: 24rem;
    font-size: clamp(1.35rem, 1.1rem + 0.8vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-description {
    margin-top: 1rem;
    line-height: 1.65;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-nav .menu {
    gap: 0.5rem 1.25rem;
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-nav a {
    padding: 0.35rem 0;
    color: rgba(255, 255, 255, 0.82);
}

.ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-copy {
    margin-top: 1rem;
    padding-top: 1.5rem;
}

@media (max-width: 899px) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-brand,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-copy {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .page-hero-overlay::before,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).home .entry-content > .hero:first-child::before,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful).front-page .entry-content > .hero:first-child::before {
        background: linear-gradient(
            90deg,
            rgba(5, 20, 30, 0.88) 0%,
            rgba(5, 20, 30, 0.7) 46%,
            rgba(5, 20, 30, 0.22) 78%,
            rgba(5, 20, 30, 0.06) 100%
        );
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .ocg-service-detail-split-media {
        height: auto;
        min-height: 18rem;
        max-height: 24rem;
        aspect-ratio: 16 / 10;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-brand,
    .ocg-system-foundation:not(.ocg-animal-editorial):not(.ocg-animal-modern):not(.ocg-animal-playful) .site-footer-copy {
        grid-column: 1;
    }
}
