/* Shared sub-page styles (products & detail) */
* { font-family: 'Open Sans', sans-serif; }
h1, h2, h3, h4, .font-display { font-family: 'Montserrat', sans-serif; }

.site-nav { background: #fff; border-bottom: 1px solid #e5e5e5; overflow: visible; }
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.nav-link-active { color: #ef1923 !important; }

.mega-menu {
    opacity: 0; visibility: hidden;
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(1080px, calc(100vw - 2rem));
    padding-top: 14px; z-index: 40;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-item:hover .nav-link-products, .nav-item:focus-within .nav-link-products,
.nav-item:hover .nav-link-dropdown, .nav-item:focus-within .nav-link-dropdown { color: #ef1923 !important; }
.nav-item:hover .mega-chevron, .nav-item:focus-within .mega-chevron { color: #ef1923; }

.nav-dropdown {
    opacity: 0; visibility: hidden;
    position: absolute; top: 100%; left: 0;
    min-width: 240px; padding-top: 10px; z-index: 40;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-panel {
    background: #fff; border-radius: 0.5rem;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
    border: 1px solid #ececec; padding: 0.45rem 0; overflow: hidden;
}
.nav-dropdown-list { list-style: none; margin: 0; padding: 0; }
.nav-dropdown-link {
    display: block; padding: 0.62rem 1.25rem;
    font-family: 'Outfit', sans-serif; font-size: 0.875rem; line-height: 1.4;
    color: #3a3a3a; text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-dropdown-link:hover { color: #ef1923; background: #fafafa; }

.mega-panel {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid #ececec;
    padding: 2.35rem 2.75rem 2.15rem;
}
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 3.5rem;
}
.mega-col {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mega-link {
    display: block;
    padding: 0.58rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.45;
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mega-link:hover { color: #ef1923; }
.mega-link.is-active { color: #ef1923; font-weight: 600; }
.mega-chevron {
    font-size: 0.625rem;
    color: #9ca3af;
    transition: color 0.2s ease, transform 0.2s ease;
}
.nav-item:hover .mega-chevron,
.nav-item:focus-within .mega-chevron { transform: rotate(180deg); }

.site-logo { display: inline-block; line-height: 0; }
.site-logo img {
    height: 3.35rem;
    width: auto;
    object-fit: contain;
}
@media (min-width: 640px) {
    .site-logo img { height: 4.1rem; }
}
.footer-logo-wrap .site-logo img { height: 2.65rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Product pages */
.page-hero {
    background: linear-gradient(135deg, #0d1525 0%, #1a2b4a 50%, #121f35 100%);
    padding: 3rem 0 3.5rem;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 60% at 80% 20%, rgba(239,25,35,0.12) 0%, transparent 55%);
    pointer-events: none;
}
.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600; color: #fff; line-height: 1.15;
}
.page-hero-title span { color: #ef1923; }
.breadcrumb { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: #ef1923; }

.product-card {
    background: #fff; border-radius: 1rem;
    border: 1px solid #ece8e5;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26,43,74,0.1);
    border-color: rgba(239,25,35,0.25);
}
.product-card-img {
    height: 11rem; background: linear-gradient(145deg, #f8f6f4, #efeae6);
    display: flex; align-items: center; justify-content: center; padding: 1.25rem;
}
.product-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 1.15rem 1.25rem 1.35rem; }
.product-card-title {
    font-family: 'Outfit', sans-serif; font-size: 0.9375rem; font-weight: 600;
    color: #1a2b4a; line-height: 1.4; min-height: 2.8rem;
}
.product-card-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: #ef1923; margin-top: 0.65rem;
}

/* Inner banner — unit detail pages */
.unit-inner-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #1a2b4a 0%, #243a5e 42%, #1e3354 100%);
    min-height: 220px;
}
.unit-inner-banner__waves {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'%3E%3Cpath d='M-20 80 C80 20 180 120 280 60 C380 0 480 100 580 40 L580 400 L-20 400Z' fill='%23ffffff' opacity='0.04'/%3E%3Cpath d='M-40 200 C60 140 200 260 320 180 C440 100 520 220 620 160 L620 400 L-40 400Z' fill='%23ffffff' opacity='0.03'/%3E%3Cpath d='M0 0 C120 60 200 0 320 80 C440 160 500 40 600 100 L600 0Z' fill='%23ef1923' opacity='0.08'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: left center;
    pointer-events: none;
}
.unit-inner-banner__slant {
    position: absolute;
    top: 0;
    right: 28%;
    width: 140px;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.12) 55%, transparent 70%);
    transform: skewX(-12deg);
    pointer-events: none;
    z-index: 1;
}
@media (min-width: 900px) {
    .unit-inner-banner__slant {
        right: 32%;
        width: 180px;
    }
}
.unit-inner-banner__wrap {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2rem;
}
@media (min-width: 640px) {
    .unit-inner-banner__wrap { padding: 1.5rem 2rem 2.25rem; }
}
@media (min-width: 1024px) {
    .unit-inner-banner__wrap { padding: 1.75rem 2rem 2.5rem; }
}

.unit-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.25rem;
}
.unit-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.unit-breadcrumb a:hover { color: #ef1923; }
.unit-breadcrumb__sep { color: rgba(255,255,255,0.35); }
.unit-breadcrumb__current { color: rgba(255,255,255,0.9); }

.unit-inner-banner__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .unit-inner-banner__grid {
        grid-template-columns: 1fr 340px;
        gap: 2rem;
    }
}
@media (min-width: 1100px) {
    .unit-inner-banner__grid {
        grid-template-columns: 1fr 400px;
    }
}

.unit-inner-banner__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.35rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    margin: 0 0 0.65rem;
}
.unit-inner-banner__tagline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    color: rgba(255,255,255,0.82);
    margin: 0 0 1.25rem;
    max-width: 32rem;
    line-height: 1.55;
}
.unit-inner-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s, gap 0.25s;
}
.unit-inner-banner__cta:hover { color: #ef1923; gap: 0.85rem; }
.unit-inner-banner__cta-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    transition: border-color 0.2s, background 0.2s;
}
.unit-inner-banner__cta:hover .unit-inner-banner__cta-icon {
    border-color: #ef1923;
    background: rgba(239,25,35,0.15);
}

.unit-inner-banner__visual {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    line-height: 0;
    max-height: 200px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    background: #f5f5f5;
}
@media (min-width: 900px) {
    .unit-inner-banner__visual {
        max-height: 220px;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    }
}
.unit-inner-banner__visual img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

/* Product unit detail — Montrims reference layout */
.unit-detail-page {
    background-color: #fff;
    font-family: 'Outfit', sans-serif;
}
.unit-detail-page .site-nav {
    border-bottom: none;
    box-shadow: none;
}

.unit-detail {
    position: relative;
    padding: 2.25rem 0 3.75rem;
    background-color: #fff;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cpath d='M20 80 C60 20 140 40 180 100 C220 160 120 200 60 160 C20 130 10 110 20 80Z' fill='none' stroke='%23b8c99a' stroke-width='1.2' opacity='0.45'/%3E%3Cpath d='M40 120 C80 90 120 130 90 170 C60 210 20 180 40 120Z' fill='none' stroke='%23c5d4a8' stroke-width='1' opacity='0.35'/%3E%3Cpath d='M300 40 C340 60 380 100 360 150 C340 200 280 180 260 140 C240 100 260 60 300 40Z' fill='none' stroke='%23b8c99a' stroke-width='1.1' opacity='0.4'/%3E%3Cpath d='M320 80 C350 100 370 140 340 170 C310 200 280 170 300 130 C310 110 315 95 320 80Z' fill='none' stroke='%23d4c4a0' stroke-width='0.9' opacity='0.3'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='380' viewBox='0 0 380 380'%3E%3Cpath d='M10 300 C50 250 120 280 150 330 C180 380 60 360 30 320 C15 305 8 310 10 300Z' fill='none' stroke='%23b8c99a' stroke-width='1.1' opacity='0.42'/%3E%3Cpath d='M60 310 C100 290 140 330 110 360 C80 390 40 350 60 310Z' fill='none' stroke='%23c5d4a8' stroke-width='0.9' opacity='0.32'/%3E%3Cpath d='M280 260 C320 240 360 280 340 330 C320 380 260 350 250 300 C245 280 260 270 280 260Z' fill='none' stroke='%23b8c99a' stroke-width='1' opacity='0.38'/%3E%3C/svg%3E");
    background-position: left top, right bottom;
    background-repeat: no-repeat;
    background-size: 340px, 300px;
}
@media (min-width: 1024px) {
    .unit-detail {
        padding: 3rem 0 4.5rem;
        background-size: 420px, 380px;
    }
}

.unit-detail__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 640px) {
    .unit-detail__inner { padding: 0 2rem; }
}

.unit-detail__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.unit-detail__row + .unit-detail__row {
    margin-top: 2.75rem;
}
@media (min-width: 900px) {
    .unit-detail__row--intro {
        grid-template-columns: 1.45fr 1fr;
        gap: 2.5rem 3rem;
    }
    .unit-detail__row--specs {
        grid-template-columns: 1fr 1.55fr;
        gap: 2.5rem 3rem;
    }
    .unit-detail__row + .unit-detail__row {
        margin-top: 3.25rem;
    }
}

.unit-detail__copy p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: #1f1f1f;
    margin: 0 0 1.4rem;
}
.unit-detail__copy p:last-child { margin-bottom: 0; }

.unit-detail__figure {
    margin: 0;
    border-radius: 1.75rem;
    overflow: hidden;
    line-height: 0;
}
.unit-detail__figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.unit-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.55;
}
.unit-spec-table td {
    padding: 10px 14px;
    text-align: left;
    vertical-align: middle;
    border: none;
    color: #2a2a2a;
}
.unit-spec-table tr:nth-child(odd) td {
    background-color: #f2f2f2;
}
.unit-spec-table tr:nth-child(even) td {
    background-color: #fff;
}
.unit-spec-table__label {
    width: 38%;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .unit-spec-table__label {
        white-space: normal;
        width: 42%;
    }
}

/* About page */
.about-page {
    background: #fff;
    font-family: 'Outfit', sans-serif;
}
.about-page .site-nav { border-bottom: none; }

.about-main { padding-bottom: 0; }

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 640px) {
    .about-container { padding: 0 2rem; }
}

.brand-a { color: #ef1923; font-weight: 700; }

.section-head {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.section-head--left { text-align: left; }
.section-head-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #ef1923;
    margin-bottom: 0.75rem;
}
.section-head-kicker::before,
.section-head-kicker::after {
    content: '';
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}
.section-head-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 600;
    color: #1a2b4a;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.section-head-title span { color: #ef1923; font-weight: 500; }
.section-head-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
}
.section-head-accent--left { justify-content: flex-start; }
.section-head-accent .accent-line {
    width: 2.75rem;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, transparent, #ef1923);
}
.section-head-accent .accent-line:last-child {
    background: linear-gradient(90deg, #ef1923, transparent);
}
.section-head-accent .accent-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef1923;
    box-shadow: 0 0 0 3px rgba(239, 25, 35, 0.12);
}
.section-head-sub {
    font-size: 0.875rem;
    color: rgba(26, 43, 74, 0.62);
    max-width: 26rem;
    margin: 0.85rem auto 0;
    line-height: 1.65;
}

.about-timeline {
    padding: 2.5rem 0 1rem;
    border-bottom: 1px solid #f0ebe7;
}
.about-timeline__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .about-timeline__track {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
.about-timeline__item {
    position: relative;
    padding: 1.35rem 1.25rem 1.35rem 1.5rem;
    background: linear-gradient(135deg, #faf8f6 0%, #fff 100%);
    border: 1px solid #ece8e5;
    border-radius: 1rem;
    border-left: 3px solid #ef1923;
}
.about-timeline__year {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2b4a;
    line-height: 1;
    margin-bottom: 0.45rem;
}
.about-timeline__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 0.25rem;
}
.about-timeline__desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.about-section {
    padding: 3.5rem 0;
}
.about-section--soft {
    background: linear-gradient(180deg, #faf8f6 0%, #fff 100%);
}
.about-section--commit {
    padding-bottom: 4rem;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cpath d='M20 60 C80 20 140 80 200 40 C260 0 300 60 280 120 C260 180 180 200 120 160 C60 120 0 100 20 60Z' fill='none' stroke='%23b8c99a' stroke-width='1' opacity='0.35'/%3E%3C/svg%3E") left bottom no-repeat,
        #fff;
    background-size: 280px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 900px) {
    .about-story-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 2.5rem;
    }
}

.about-prose p {
    font-size: 15px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0 0 1.25rem;
}
.about-prose p:last-child { margin-bottom: 0; }
.about-prose--center {
    max-width: 42rem;
    margin: 2rem auto 0;
    text-align: center;
}

.about-highlight {
    background: linear-gradient(145deg, #1a2b4a, #243a5e);
    color: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
}
.about-highlight::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(239,25,35,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.about-highlight__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef1923;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.about-highlight__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0;
    position: relative;
}

.about-facility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
    .about-facility-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-facility-card {
    background: #fff;
    border: 1px solid #ece8e5;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.about-facility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(26,43,74,0.08);
    border-color: rgba(239,25,35,0.2);
}
.about-facility-card__sqft {
    font-size: 2rem;
    font-weight: 700;
    color: #ef1923;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.about-facility-card__sqft span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}
.about-facility-card__place {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 0.35rem;
}
.about-facility-card__note {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 900px) {
    .about-split {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3rem;
    }
}

.about-markets {
    background: #faf8f6;
    border: 1px solid #ece8e5;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
}
.about-markets__title {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ef1923;
    margin-bottom: 1rem;
}
.about-markets__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-markets__list li {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a2b4a;
    background: #fff;
    border: 1px solid #e5e0dc;
    border-radius: 9999px;
    padding: 0.4rem 0.85rem;
}

.about-commit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}
@media (min-width: 900px) {
    .about-commit-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.about-commit {
    margin: 0;
    padding: 2rem 1.75rem;
    background: #fef8f8;
    border-left: 4px solid #ef1923;
    border-radius: 0 1rem 1rem 0;
    display: flex;
    align-items: center;
}
.about-commit p {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.75;
    color: #1a2b4a;
    margin: 0;
    font-style: italic;
}

.about-ceo {
    position: relative;
    background: linear-gradient(160deg, #0b1120 0%, #121f35 50%, #1a2b4a 100%);
    color: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    overflow: hidden;
}
.about-ceo__accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(239,25,35,0.25), transparent 70%);
    pointer-events: none;
}
.about-ceo__eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}
.about-ceo__name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.about-ceo__role {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1rem;
}
.about-ceo__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}
.about-ceo__phone:hover { color: #ef1923; }
.about-ceo__brand {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* Contact page */
.contact-page {
    background: #fff;
    font-family: 'Outfit', sans-serif;
}
.contact-page .site-nav { border-bottom: none; }

.unit-inner-banner__grid--solo {
    grid-template-columns: 1fr !important;
}
.unit-inner-banner--contact .unit-inner-banner__slant { display: none; }

.contact-main {
    padding: 3rem 0 4rem;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(239, 25, 35, 0.04) 0%, transparent 55%),
        linear-gradient(180deg, #faf7f5 0%, #fff 100%);
}
.contact-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 640px) {
    .contact-container { padding: 0 2rem; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 960px) {
    .contact-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 3rem;
    }
}

.contact-card {
    background: #fff;
    border: 1px solid #ece8e5;
    border-radius: 1rem;
    padding: 1.35rem 1.25rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease, border-color 0.3s;
}
.contact-card:hover {
    box-shadow: 0 12px 32px rgba(26,43,74,0.07);
    border-color: rgba(239,25,35,0.15);
}
.contact-card__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-card__title i {
    color: #ef1923;
    font-size: 0.875rem;
}
.contact-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.contact-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4b5563;
}
.contact-card__list li > i {
    color: #ef1923;
    margin-top: 0.2rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}
.contact-card__list a {
    color: #1a2b4a;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-card__list a:hover { color: #ef1923; }

.contact-hours {
    margin-top: 0.5rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, #1a2b4a, #243a5e);
    border-radius: 1rem;
    color: #fff;
}
.contact-hours__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.5rem;
}
.contact-hours__text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.88);
    margin: 0 0 0.25rem;
    line-height: 1.5;
}
.contact-hours__text:last-child { margin-bottom: 0; }

.contact-form-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 18px 48px rgba(26, 43, 74, 0.08);
    border: 1px solid rgba(26, 43, 74, 0.06);
    position: relative;
    overflow: hidden;
}
@media (min-width: 640px) {
    .contact-form-card { padding: 2.25rem 2.5rem; }
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef1923, #ff3b44, #ef1923);
}
.contact-form-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 0.35rem;
}
.contact-form-card__sub {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}
@media (min-width: 540px) {
    .contact-form__row { grid-template-columns: 1fr 1fr; }
}
.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a2b4a;
    margin-bottom: 0.45rem;
}
.contact-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #faf8f7;
    border: 1px solid #e8e2de;
    border-radius: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    color: #1a2b4a;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-input::placeholder { color: #9ca3af; }
.contact-input:focus {
    background: #fff;
    border-color: #ef1923;
    box-shadow: 0 0 0 3px rgba(239, 25, 35, 0.1);
}
.contact-input--area { resize: vertical; min-height: 7rem; }
.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #4b5563;
}
.contact-check input {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: #ef1923;
    cursor: pointer;
}
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #ef1923, #c9141c);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(239, 25, 35, 0.32);
}

.cms-page { background: #faf8f6; color: #374151; }
.cms-page .site-nav { border-bottom: none; }
.cms-main {
    padding: 3.5rem 0 4.5rem;
    background: linear-gradient(180deg, #fff 0%, #faf8f6 100%);
}
.cms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 1024px) {
    .cms-container { padding: 0 2rem; }
}
.cms-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}
.cms-content p { margin: 0 0 1rem; }
.cms-content h2, .cms-content h3, .cms-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #1a2b4a;
    margin: 1.75rem 0 0.75rem;
}
.cms-content ul, .cms-content ol { margin: 0 0 1rem 1.25rem; }
.cms-content img { max-width: 100%; height: auto; border-radius: 0.75rem; }
.cms-content a { color: #ef1923; text-decoration: underline; }

.site-footer { position: relative; background: linear-gradient(160deg, #0b1120 0%, #121f35 45%, #0d1525 100%); overflow: hidden; }
.footer-pattern { position: absolute; inset: 0; opacity: 0.045; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 28px 28px; pointer-events: none; }
.footer-logo-wrap { display: inline-block; background: #fff; border-radius: 1rem; padding: 0.85rem 1.25rem; box-shadow: 0 8px 28px rgba(0,0,0,0.22); }
.footer-social { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: all 0.3s ease; }
.footer-social:hover { background: #ef1923; border-color: #ef1923; color: #fff; transform: translateY(-3px); }

.back-to-top {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
    width: 3rem; height: 3rem; border-radius: 50%; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; color: #fff;
    background: linear-gradient(145deg, #ef1923, #c9141c);
    box-shadow: 0 8px 24px rgba(239,25,35,0.35);
    opacity: 0; visibility: hidden; transform: translateY(1rem);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 12px 32px rgba(239,25,35,0.45); transform: translateY(-4px); }
