:root {
    --cm-navy-950: #071724;
    --cm-navy-900: #0d2233;
    --cm-navy-800: #102a3f;
    --cm-navy-700: #173b56;
    --cm-blue-700: #2567a5;
    --cm-blue-600: #2d78ba;
    --cm-blue-500: #3c8fd0;
    --cm-sky-100: #e8f4fb;
    --cm-sky-50: #f3f9fc;
    --cm-ink: #172631;
    --cm-muted: #5d6b76;
    --cm-line: #d8e1e7;
    --cm-soft: #f4f7f9;
    --cm-white: #ffffff;
    --cm-success: #0e7048;
    --cm-success-bg: #e9f8f1;
    --cm-error: #9c321f;
    --cm-error-bg: #fff0ec;
    --cm-shadow-sm: 0 10px 30px rgba(7, 23, 36, 0.08);
    --cm-shadow-md: 0 22px 60px rgba(7, 23, 36, 0.15);
    --cm-radius-sm: 8px;
    --cm-radius: 14px;
    --cm-radius-lg: 24px;
    --cm-container: 1200px;
    --cm-header-height: 86px;
    --cm-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--cm-header-height) + 24px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--cm-ink);
    background: var(--cm-white);
    font-family: var(--cm-font);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--cm-blue-700);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--cm-navy-800);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--cm-navy-900);
    font-weight: 760;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.65rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
    font-size: 1.25rem;
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

::selection {
    color: var(--cm-white);
    background: var(--cm-blue-700);
}

:focus-visible {
    outline: 3px solid #67b8ed;
    outline-offset: 4px;
}

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

.section {
    position: relative;
    padding: clamp(76px, 9vw, 128px) 0;
}

.section--soft {
    background: var(--cm-soft);
}

.section--navy {
    color: rgba(255, 255, 255, 0.78);
    background: var(--cm-navy-900);
}

.section--navy h2,
.section--navy h3 {
    color: var(--cm-white);
}

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

.skip-link {
    position: fixed;
    z-index: 99999;
    top: 10px;
    left: 10px;
    padding: 11px 16px;
    color: var(--cm-white);
    background: var(--cm-navy-950);
    border-radius: 6px;
    transform: translateY(-150%);
}

.skip-link:focus {
    color: var(--cm-white);
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--cm-blue-700);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow--light {
    color: #8cd1f4;
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    color: var(--cm-white);
    background: var(--cm-blue-700);
    border: 2px solid var(--cm-blue-700);
    border-radius: 8px;
    font-size: 0.94rem;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    color: var(--cm-white);
    background: var(--cm-navy-700);
    border-color: var(--cm-navy-700);
    box-shadow: 0 12px 28px rgba(18, 55, 83, 0.2);
    transform: translateY(-2px);
}

.button--secondary {
    color: var(--cm-navy-800);
    background: transparent;
    border-color: var(--cm-navy-800);
}

.button--secondary:hover {
    color: var(--cm-white);
    background: var(--cm-navy-800);
    border-color: var(--cm-navy-800);
}

.button--light {
    color: var(--cm-navy-900);
    background: var(--cm-white);
    border-color: var(--cm-white);
}

.button--light:hover {
    color: var(--cm-navy-900);
    background: #dff2fd;
    border-color: #dff2fd;
}

.button--ghost-light {
    color: var(--cm-white);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.46);
}

.button--ghost-light:hover {
    color: var(--cm-white);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--cm-white);
}

.button--small {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 0.88rem;
}

.button--full {
    width: 100%;
    min-height: 56px;
}

.button__icon {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 180ms ease;
}

.button:hover .button__icon,
.text-link:hover .icon {
    transform: translateX(4px);
}

.button-row,
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cm-navy-800);
    font-weight: 760;
    text-decoration: none;
}

.text-link .icon {
    width: 1rem;
    height: 1rem;
    transition: transform 180ms ease;
}

/* Top bar and header */
.site-topbar {
    position: relative;
    z-index: 50;
    color: rgba(255, 255, 255, 0.86);
    background: var(--cm-navy-950);
    font-size: 0.78rem;
}

.site-topbar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-topbar p {
    margin: 0;
}

.site-topbar__location,
.site-topbar__contact,
.site-topbar__contact a {
    display: flex;
    align-items: center;
}

.site-topbar__location,
.site-topbar__contact a {
    gap: 7px;
}

.site-topbar__contact {
    gap: 22px;
}

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

.site-topbar__contact a:hover {
    color: var(--cm-white);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--cm-header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(16, 42, 63, 0.08);
    backdrop-filter: blur(14px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(7, 23, 36, 0.09);
}

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

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-logo {
    display: inline-flex;
    width: 218px;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.site-logo__image {
    width: 100%;
    max-height: 68px;
    object-fit: contain;
}

.site-nav {
    margin-left: auto;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 31px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list a {
    position: relative;
    display: block;
    padding: 12px 0;
    color: var(--cm-navy-900);
    font-size: 0.91rem;
    font-weight: 680;
    text-decoration: none;
}

.site-nav__list a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cm-blue-600);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__mobile-contact,
.site-nav__mobile-details,
.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(780px, calc(100svh - 72px));
    display: grid;
    overflow: hidden;
    color: var(--cm-white);
    background: var(--cm-navy-900);
    isolation: isolate;
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: -2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 23, 36, 0.98) 0%, rgba(7, 23, 36, 0.9) 42%, rgba(7, 23, 36, 0.46) 75%, rgba(7, 23, 36, 0.26) 100%),
        linear-gradient(0deg, rgba(7, 23, 36, 0.55), transparent 55%);
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
    padding-top: clamp(90px, 10vw, 130px);
    padding-bottom: clamp(92px, 10vw, 130px);
}

.hero__copy {
    max-width: 800px;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 25px;
    color: var(--cm-white);
    font-size: clamp(3.2rem, 6.7vw, 6.25rem);
    letter-spacing: -0.055em;
}

.hero__lead {
    max-width: 720px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.1rem, 1.8vw, 1.34rem);
    line-height: 1.6;
}

.hero__panel {
    align-self: end;
    padding: 28px;
    margin-bottom: 16px;
    background: rgba(9, 32, 49, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--cm-radius);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.hero__panel-title {
    margin-bottom: 20px;
    color: var(--cm-white);
    font-size: 1.08rem;
    font-weight: 760;
}

.check-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.check-list .icon {
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 2px;
    color: var(--cm-blue-600);
    stroke-width: 2.3;
}

.check-list--light {
    gap: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 0.92rem;
}

.check-list--light .icon {
    color: #8cd1f4;
}

/* Intro strip */
.service-intro {
    position: relative;
    z-index: 2;
    color: var(--cm-white);
    background: var(--cm-blue-700);
}

.service-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.15fr);
    align-items: stretch;
}

.service-intro__statement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 37px 54px 37px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.service-intro__statement span {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-intro__statement strong {
    max-width: 500px;
    font-size: clamp(1.14rem, 2vw, 1.55rem);
    line-height: 1.35;
}

.service-intro__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service-intro__items div {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.service-intro__items div:last-child {
    border-right: 0;
}

.service-intro__items span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.74rem;
    font-weight: 800;
}

.service-intro__items p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 680;
    line-height: 1.4;
}

/* Section headings and services */
.section-heading {
    max-width: 880px;
    margin-bottom: clamp(42px, 6vw, 70px);
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    align-items: start;
    gap: clamp(40px, 8vw, 110px);
}

.section-heading--split > p {
    padding-top: 46px;
    color: var(--cm-muted);
    font-size: 1.05rem;
}

.section-heading--align-end {
    align-items: end;
}

.section-heading--align-end > .text-link {
    justify-self: end;
    margin-bottom: 12px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 285px;
    padding: 31px;
    background: var(--cm-white);
    border: 1px solid var(--cm-line);
    border-radius: var(--cm-radius);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
    border-color: #b6cfdf;
    box-shadow: var(--cm-shadow-sm);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 29px;
    color: var(--cm-blue-700);
    background: var(--cm-sky-100);
    border-radius: 11px;
}

.service-card__icon .icon {
    width: 27px;
    height: 27px;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 1.27rem;
}

.service-card p {
    color: var(--cm-muted);
    font-size: 0.95rem;
}

.trade-strip {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: start;
    gap: 28px;
    padding: 31px 34px;
    margin-top: 24px;
    color: var(--cm-white);
    background: var(--cm-navy-900);
    border-radius: var(--cm-radius);
}

.trade-strip > p {
    margin: 2px 0 0;
    color: #8cd1f4;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trade-strip ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trade-strip li {
    padding: 6px 11px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.78rem;
}

/* Process */
.process {
    overflow: hidden;
}

.process::before {
    position: absolute;
    top: -200px;
    right: -180px;
    width: 580px;
    height: 580px;
    content: "";
    background: radial-gradient(circle, rgba(58, 144, 207, 0.2), transparent 68%);
    border-radius: 50%;
}

.process__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 104px);
}

.process__image-wrap {
    position: relative;
}

.process__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--cm-radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.process__image-note {
    position: absolute;
    right: -30px;
    bottom: 34px;
    max-width: 300px;
    padding: 20px 22px;
    color: var(--cm-navy-900);
    background: var(--cm-white);
    border-radius: 10px;
    box-shadow: var(--cm-shadow-md);
}

.process__image-note span {
    display: block;
    margin-bottom: 5px;
    color: var(--cm-blue-700);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.process__image-note strong {
    font-size: 0.94rem;
    line-height: 1.45;
}

.process__content h2 {
    margin-bottom: 20px;
}

.process__intro {
    max-width: 630px;
    margin-bottom: 38px;
    font-size: 1.05rem;
}

.process-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 19px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list__number {
    color: #8cd1f4;
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.08em;
}

.process-list h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.process-list p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
}

/* Projects */
.projects-preview {
    overflow: hidden;
}

.project-grid {
    display: grid;
    gap: 20px;
}

.project-grid--preview {
    grid-template-columns: repeat(12, 1fr);
}

.project-grid--preview .project-card {
    grid-column: span 4;
}

.project-grid--preview .project-card--wide {
    grid-column: span 8;
}

.project-grid--preview .project-card--wide .project-card__image-wrap {
    aspect-ratio: 16 / 9;
}

.project-grid--full {
    grid-template-columns: repeat(3, 1fr);
}

.project-card {
    min-width: 0;
}

.project-card[hidden] {
    display: none !important;
}

.project-card__link {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    background: var(--cm-white);
    border: 1px solid var(--cm-line);
    border-radius: var(--cm-radius);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card__link:hover {
    color: inherit;
    border-color: #b9cfdd;
    box-shadow: var(--cm-shadow-sm);
    transform: translateY(-4px);
}

.project-card__image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #dfe8ed;
}

.project-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__link:hover .project-card__image {
    transform: scale(1.035);
}

.project-card__expand {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--cm-white);
    background: rgba(7, 23, 36, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

.project-card__expand .icon {
    width: 18px;
    height: 18px;
}

.project-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 23px 24px;
}

.project-card__label {
    margin-bottom: 8px;
    color: var(--cm-blue-700);
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-card__title {
    margin-bottom: 10px;
    color: var(--cm-navy-900);
    font-size: 1.12rem;
    font-weight: 760;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.project-card__summary {
    color: var(--cm-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 16px;
}

.project-filters button {
    padding: 9px 14px;
    color: var(--cm-navy-800);
    background: var(--cm-white);
    border: 1px solid var(--cm-line);
    border-radius: 100px;
    font-size: 0.83rem;
    font-weight: 720;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.project-filters button:hover,
.project-filters button[aria-pressed="true"] {
    color: var(--cm-white);
    background: var(--cm-navy-800);
    border-color: var(--cm-navy-800);
}

.project-count {
    margin-bottom: 25px;
    color: var(--cm-muted);
    font-size: 0.82rem;
}

.noscript-note {
    padding: 14px 16px;
    margin-top: 25px;
    color: var(--cm-navy-900);
    background: var(--cm-sky-100);
    border-left: 4px solid var(--cm-blue-700);
}

.project-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: clamp(40px, 9vw, 120px);
    align-items: end;
}

.project-cta h2 {
    margin-bottom: 0;
}

.project-cta__inner > div:last-child p {
    margin-bottom: 24px;
    color: var(--cm-muted);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.68fr);
    align-items: stretch;
    gap: clamp(50px, 9vw, 120px);
}

.about-copy h2 {
    margin-bottom: 22px;
}

.about-copy > p {
    color: var(--cm-muted);
}

.about-copy__lead {
    color: var(--cm-ink) !important;
    font-size: 1.13rem;
}

.about-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    background: var(--cm-navy-900);
    border-radius: var(--cm-radius-lg);
    box-shadow: var(--cm-shadow-md);
}

.about-card__top {
    flex: 1;
    padding: clamp(32px, 5vw, 52px);
    background:
        linear-gradient(rgba(10, 34, 52, 0.88), rgba(10, 34, 52, 0.93)),
        url("../images/feature-warehouse.webp") center / cover no-repeat;
}

.about-card__top h3 {
    margin-bottom: 17px;
    color: var(--cm-white);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.about-card__contact {
    display: grid;
    gap: 12px;
    padding: 28px 34px 32px;
    background: var(--cm-blue-700);
}

.about-card__contact > span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-card__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cm-white);
    font-size: 0.91rem;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

/* Contact */
.contact-section {
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 12% 20%, rgba(45, 120, 186, 0.23), transparent 30%),
        var(--cm-navy-950);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.1fr);
    gap: clamp(55px, 9vw, 115px);
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: calc(var(--cm-header-height) + 34px);
}

.admin-bar .contact-intro {
    top: calc(var(--cm-header-height) + 66px);
}

.contact-intro h2 {
    margin-bottom: 22px;
    color: var(--cm-white);
}

.contact-intro > p:not(.eyebrow) {
    font-size: 1.02rem;
}

.contact-direct {
    display: grid;
    gap: 0;
    margin: 36px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-direct > a,
.contact-direct > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    color: var(--cm-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.contact-direct__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #8cd1f4;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-direct small,
.contact-direct strong {
    display: block;
}

.contact-direct small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.71rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-direct strong {
    font-size: 0.91rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-intro__note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.87rem !important;
}

.contact-form-card {
    padding: clamp(26px, 5vw, 48px);
    color: var(--cm-ink);
    background: var(--cm-white);
    border-radius: var(--cm-radius-lg);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    gap: 18px;
}

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

.form-field label,
.form-label-row label {
    color: var(--cm-navy-900);
    font-size: 0.84rem;
    font-weight: 730;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    color: var(--cm-ink);
    background-color: #fbfcfd;
    border: 1px solid #cbd7de;
    border-radius: 8px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input,
.form-field select {
    min-height: 50px;
    padding: 10px 13px;
}

.form-field textarea {
    min-height: 150px;
    padding: 12px 13px;
    resize: vertical;
}

.form-field select {
    padding-right: 40px;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--cm-navy-700) 50%), linear-gradient(135deg, var(--cm-navy-700) 50%, transparent 50%);
    background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    background: var(--cm-white);
    border-color: var(--cm-blue-600);
    box-shadow: 0 0 0 3px rgba(45, 120, 186, 0.16);
}

.form-field label {
    display: block;
    margin-bottom: 7px;
}

.form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 7px;
}

.form-label-row label {
    margin: 0;
}

.form-label-row > span {
    color: var(--cm-muted);
    font-size: 0.72rem;
}

.form-help,
.form-footnote {
    color: var(--cm-muted);
    font-size: 0.76rem;
}

.form-help {
    margin: 7px 0 0;
}

.form-footnote {
    margin: -6px 0 0;
    text-align: center;
}

.form-consent {
    display: grid;
    grid-template-columns: 19px 1fr;
    align-items: start;
    gap: 11px;
    padding: 14px 15px;
    background: var(--cm-soft);
    border-radius: 8px;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: var(--cm-blue-700);
}

.form-consent label {
    color: var(--cm-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.form-notice {
    padding: 17px 19px;
    margin-bottom: 23px;
    border: 1px solid;
    border-radius: 9px;
}

.form-notice strong {
    display: block;
    margin-bottom: 5px;
}

.form-notice p,
.form-notice ul {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.form-notice--success {
    color: var(--cm-success);
    background: var(--cm-success-bg);
    border-color: #b6e4d0;
}

.form-notice--error {
    color: var(--cm-error);
    background: var(--cm-error-bg);
    border-color: #f0c3b8;
}

/* Page heroes */
.page-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    overflow: hidden;
    align-items: end;
    color: var(--cm-white);
    background: var(--cm-navy-900);
    isolation: isolate;
}

.page-hero__media,
.page-hero__shade {
    position: absolute;
    inset: 0;
}

.page-hero__media {
    z-index: -2;
}

.page-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.page-hero__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 23, 36, 0.97), rgba(7, 23, 36, 0.72) 55%, rgba(7, 23, 36, 0.35));
}

.page-hero__content {
    padding-top: 90px;
    padding-bottom: 74px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    color: var(--cm-white);
    font-size: clamp(3rem, 6vw, 5.3rem);
}

.page-hero__content > p:last-child {
    max-width: 730px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.page-hero--simple {
    min-height: 390px;
    background:
        radial-gradient(circle at 80% 20%, rgba(60, 143, 208, 0.25), transparent 32%),
        linear-gradient(135deg, var(--cm-navy-950), var(--cm-navy-700));
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--cm-white);
}

/* Legal and content pages */
.legal-page__grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 760px);
    justify-content: center;
    gap: clamp(45px, 8vw, 100px);
    align-items: start;
}

.legal-page__aside {
    position: sticky;
    top: calc(var(--cm-header-height) + 32px);
}

.admin-bar .legal-page__aside {
    top: calc(var(--cm-header-height) + 64px);
}

.legal-page__aside-card {
    padding: 23px;
    background: var(--cm-soft);
    border: 1px solid var(--cm-line);
    border-radius: var(--cm-radius);
}

.legal-page__aside-card strong {
    display: block;
    margin-bottom: 11px;
    color: var(--cm-navy-900);
    font-size: 1rem;
}

.legal-page__aside-card p,
.legal-page__aside-card a {
    font-size: 0.8rem;
    overflow-wrap: anywhere;
}

.legal-page__aside-card p {
    color: var(--cm-muted);
}

.legal-content {
    color: #3f4c56;
}

.legal-content__lead {
    padding-bottom: 28px;
    margin-bottom: 38px;
    color: var(--cm-ink);
    border-bottom: 1px solid var(--cm-line);
    font-size: 1.12rem;
}

.legal-content h2 {
    margin: 46px 0 15px;
    font-size: 1.55rem;
    letter-spacing: -0.025em;
}

.legal-content ul {
    padding-left: 21px;
}

.legal-content li + li {
    margin-top: 6px;
}

.legal-content address {
    padding: 20px 22px;
    font-style: normal;
    background: var(--cm-soft);
    border-left: 4px solid var(--cm-blue-700);
}

.content-page__inner {
    max-width: 820px;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 1.7em;
}

.entry-content img {
    border-radius: var(--cm-radius);
}

.post-summary {
    padding: 25px 0;
    border-bottom: 1px solid var(--cm-line);
}

.post-summary h2 {
    font-size: 1.7rem;
}

/* Lightbox */
.project-lightbox {
    width: min(1120px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100dvh - 32px);
    padding: 0;
    overflow: visible;
    color: var(--cm-ink);
    background: transparent;
    border: 0;
}

.project-lightbox::backdrop {
    background: rgba(3, 12, 19, 0.91);
    backdrop-filter: blur(7px);
}

.project-lightbox__shell {
    position: relative;
    max-height: calc(100dvh - 32px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    background: var(--cm-white);
    border-radius: 15px;
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
}

.project-lightbox__close {
    position: absolute;
    z-index: 3;
    top: 13px;
    right: 13px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--cm-white);
    background: rgba(7, 23, 36, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.project-lightbox__close:hover {
    background: var(--cm-navy-950);
}

.project-lightbox__media {
    min-height: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #07131d;
}

.project-lightbox__media img {
    width: 100%;
    max-height: calc(100dvh - 210px);
    object-fit: contain;
}

.project-lightbox__caption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 35px;
    padding: 23px 27px 26px;
}

.project-lightbox__caption .eyebrow {
    margin-bottom: 8px;
    font-size: 0.65rem;
}

.project-lightbox__caption h2 {
    margin-bottom: 7px;
    font-size: 1.5rem;
}

.project-lightbox__caption p:last-child {
    margin: 0;
    color: var(--cm-muted);
    font-size: 0.87rem;
}

.project-lightbox__controls {
    display: flex;
    gap: 8px;
}

.project-lightbox__controls button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 11px;
    color: var(--cm-navy-800);
    background: var(--cm-soft);
    border: 1px solid var(--cm-line);
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.project-lightbox__controls button:hover {
    background: var(--cm-sky-100);
    border-color: #b5d4e7;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.66);
    background: var(--cm-navy-950);
}

.site-footer__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding: 65px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__cta h2 {
    max-width: 810px;
    margin: 0;
    color: var(--cm-white);
    font-size: clamp(1.8rem, 3.5vw, 3.1rem);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1.15fr 0.95fr;
    gap: clamp(35px, 6vw, 75px);
    padding: 65px 0 55px;
}

.site-footer__logo {
    width: 230px;
    display: inline-block;
    padding: 8px 11px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
}

.site-footer__logo-image {
    width: 100%;
}

.site-footer__brand p {
    max-width: 340px;
}

.site-footer h3 {
    margin: 7px 0 19px;
    color: var(--cm-white);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
    font-size: 0.84rem;
}

.site-footer__links,
.site-footer__contact {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--cm-white);
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.site-footer__contact .icon {
    margin-top: 4px;
    color: #7dc6ed;
}

.site-footer__bottom {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 0.75rem;
}

.mobile-call {
    display: none;
}

/* 404 */
.not-found {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 100px 0;
    text-align: center;
    background: var(--cm-soft);
}

.not-found__inner {
    max-width: 760px;
}

.not-found__code {
    margin-bottom: -20px;
    color: #dceaf3;
    font-size: clamp(8rem, 22vw, 16rem);
    font-weight: 850;
    line-height: 0.8;
    letter-spacing: -0.09em;
}

.not-found .eyebrow {
    justify-content: center;
}

.not-found h1 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.not-found .button-row {
    justify-content: center;
    margin-top: 31px;
}

/* Responsive */
@media (max-width: 1100px) {
    .site-header__inner {
        gap: 22px;
    }

    .site-logo {
        width: 190px;
    }

    .site-nav__list {
        gap: 18px;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 48px;
    }

    .service-intro__grid {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .service-intro__statement {
        padding-right: 32px;
    }

    .service-intro__items div {
        padding-inline: 18px;
    }

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

    .project-grid--full {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid--preview .project-card,
    .project-grid--preview .project-card--wide {
        grid-column: span 6;
    }

    .project-grid--preview .project-card--wide .project-card__image-wrap {
        aspect-ratio: 4 / 3;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
        gap: 50px;
    }

    .site-footer__grid {
        grid-template-columns: 1.35fr 0.7fr 1fr;
    }

    .site-footer__grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 900px) {
    :root {
        --cm-header-height: 76px;
    }

    .admin-bar .site-header {
        top: 46px;
    }

    .site-topbar__location {
        display: none;
    }

    .site-topbar__inner {
        justify-content: center;
    }

    .site-topbar__contact {
        width: 100%;
        justify-content: space-between;
    }

    .site-topbar__contact a {
        font-size: 0.72rem;
    }

    .site-logo {
        width: 180px;
    }

    .site-header__cta {
        margin-left: auto;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        padding: 0;
        color: var(--cm-navy-900);
        background: var(--cm-soft);
        border: 1px solid var(--cm-line);
        border-radius: 8px;
        cursor: pointer;
        order: 4;
    }

    .menu-toggle .icon {
        width: 23px;
        height: 23px;
    }

    .menu-toggle__close {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__open {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__close {
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 999;
        top: calc(36px + var(--cm-header-height));
        right: 0;
        left: 0;
        max-height: calc(100dvh - 36px - var(--cm-header-height));
        padding: 22px 20px 30px;
        overflow-y: auto;
        visibility: hidden;
        background: var(--cm-white);
        border-top: 1px solid var(--cm-line);
        box-shadow: 0 22px 40px rgba(7, 23, 36, 0.16);
        opacity: 0;
        transform: translateY(-12px);
        transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
    }

    .admin-bar .site-nav {
        top: calc(46px + 36px + var(--cm-header-height));
        max-height: calc(100dvh - 46px - 36px - var(--cm-header-height));
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav__list {
        display: grid;
        gap: 0;
    }

    .site-nav__list li {
        border-bottom: 1px solid var(--cm-line);
    }

    .site-nav__list a {
        padding: 15px 4px;
        font-size: 1rem;
    }

    .site-nav__list a::after {
        display: none;
    }

    .site-nav__mobile-contact,
    .site-nav__mobile-details {
        display: block;
    }

    .site-nav__mobile-details {
        padding-top: 20px;
    }

    .site-nav__mobile-details a {
        display: block;
        margin-top: 7px;
        color: var(--cm-blue-700);
        font-size: 0.86rem;
        font-weight: 700;
        text-decoration: none;
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: auto;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(7, 23, 36, 0.96), rgba(7, 23, 36, 0.72));
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 96px;
        padding-bottom: 84px;
    }

    .hero__copy {
        max-width: 760px;
    }

    .hero__panel {
        max-width: 620px;
        align-self: auto;
        margin: 0;
    }

    .service-intro__grid {
        grid-template-columns: 1fr;
    }

    .service-intro__statement {
        padding: 31px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .service-intro__items div:first-child {
        padding-left: 0;
    }

    .section-heading--split,
    .process__grid,
    .about-grid,
    .contact-grid,
    .project-cta__inner,
    .legal-page__grid {
        grid-template-columns: 1fr;
    }

    .section-heading--split {
        gap: 24px;
    }

    .section-heading--split > p {
        max-width: 680px;
        padding-top: 0;
    }

    .process__image-wrap {
        max-width: 620px;
    }

    .process__image {
        aspect-ratio: 4 / 3;
    }

    .process__image-note {
        right: 22px;
    }

    .contact-intro,
    .legal-page__aside {
        position: static;
    }

    .contact-grid {
        gap: 50px;
    }

    .contact-intro {
        max-width: 720px;
    }

    .legal-page__aside-card {
        max-width: 520px;
    }

    .site-footer__cta {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__cta .button {
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--cm-container));
    }

    .section {
        padding: 72px 0;
    }

    .site-topbar__contact a:last-child span {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-header__inner {
        gap: 11px;
    }

    .site-logo {
        width: 155px;
    }

    .site-header__cta {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .hero__content {
        padding-top: 76px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }

    .hero__lead {
        font-size: 1.03rem;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__panel {
        padding: 23px;
    }

    .service-intro__items {
        grid-template-columns: 1fr;
    }

    .service-intro__items div {
        min-height: auto;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }

    .service-intro__items div:last-child {
        border-bottom: 0;
    }

    .service-grid,
    .project-grid--full,
    .form-row--two {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 26px;
    }

    .service-card__icon {
        margin-bottom: 22px;
    }

    .trade-strip {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px;
    }

    .project-grid--preview {
        grid-template-columns: 1fr;
    }

    .project-grid--preview .project-card,
    .project-grid--preview .project-card--wide {
        grid-column: auto;
    }

    .project-card__summary {
        display: none;
    }

    .process__image-note {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin: -38px 18px 0;
    }

    .process-list li {
        grid-template-columns: 42px 1fr;
    }

    .about-card__contact {
        padding-inline: 25px;
    }

    .contact-form-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .contact-direct strong {
        font-size: 0.84rem;
    }

    .page-hero {
        min-height: 450px;
    }

    .page-hero__content {
        padding-top: 72px;
        padding-bottom: 58px;
    }

    .page-hero h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .page-hero--simple {
        min-height: 330px;
    }

    .project-filters {
        flex-wrap: nowrap;
        padding-bottom: 7px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .project-filters button {
        flex: 0 0 auto;
    }

    .project-lightbox {
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
    }

    .project-lightbox__shell {
        max-height: calc(100dvh - 16px);
    }

    .project-lightbox__media img {
        max-height: calc(100dvh - 250px);
    }

    .project-lightbox__caption {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 19px;
    }

    .project-lightbox__caption h2 {
        padding-right: 20px;
        font-size: 1.25rem;
    }

    .project-lightbox__controls {
        justify-content: space-between;
    }

    .project-lightbox__controls button {
        flex: 1;
        justify-content: center;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__grid > div:last-child {
        grid-column: auto;
    }

    .site-footer__bottom {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 0 84px;
    }

    .mobile-call {
        position: fixed;
        z-index: 900;
        right: 14px;
        bottom: 14px;
        display: inline-flex;
        min-height: 48px;
        align-items: center;
        gap: 8px;
        padding: 11px 16px;
        color: var(--cm-white);
        background: var(--cm-blue-700);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 100px;
        box-shadow: 0 12px 34px rgba(7, 23, 36, 0.3);
        font-size: 0.84rem;
        font-weight: 760;
        text-decoration: none;
    }

    .mobile-call:hover {
        color: var(--cm-white);
        background: var(--cm-navy-700);
    }

    .not-found__code {
        margin-bottom: 0;
    }
}

@media (max-width: 360px) {
    .site-topbar__contact a:last-child {
        display: none;
    }

    .site-logo {
        width: 142px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-topbar,
    .site-header,
    .site-footer__cta,
    .mobile-call,
    .project-filters,
    .project-lightbox,
    .button {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 11pt;
    }

    .section,
    .page-hero__content {
        padding: 24px 0;
    }

    .page-hero,
    .page-hero--simple {
        min-height: auto;
        color: #000;
        background: #fff;
    }

    .page-hero h1,
    .page-hero__content > p:last-child,
    .breadcrumbs,
    .breadcrumbs a {
        color: #000;
    }
}
