/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    --brand-heading-font: "Lato", sans-serif;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

/* Header */
.site-header {
    background: #d9201d;
    color: white;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--brand-heading-font);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.05;
    text-align: left;
    text-decoration: none;
}

.logo img {
    height: 40px;
    display: block;
}

.logo span {
  display: block;
  font-size: 20px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 4px;
}

.main-nav li {
    position: relative;
}

.main-nav .has-dropdown>a::after {
    content: ' ▾';
    font-size: 0.8em;
}

.main-nav .dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    color: #222;
    min-width: 160px;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    display: none;
    padding: 8px 0;
    z-index: 50;
}

.main-nav .dropdown li {
    display: block;
}

.main-nav .dropdown a {
    color: #222;
    display: block;
    padding: 8px 16px;
    font-weight: 500;
}

.main-nav .dropdown a:hover {
    background: #f3f3f3;
}

.main-nav li:hover>.dropdown {
    display: block;
}

.nav-toggle {
    display: none;
    background: transparent;
    color: white;
    border: none;
    font-size: 22px;
}

nav.main-nav {
    padding-top: 12px;
}

/* Responsive */
@media (max-width: 800px) {
    .site-header .container {
        padding: 10px 14px;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        background: #d9201d;
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav a {
        padding: 12px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav .dropdown {
        position: static;
        background: rgba(255, 255, 255, 0.95);
        margin-left: 12px;
        border-radius: 4px;
        display: none;
    }

    .main-nav li:hover>.dropdown {
        display: none;
    }

    .main-nav .has-dropdown.open>.dropdown {
        display: block;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav.show {
        display: block;
    }
}

/* Small visual utilities */
.container {
    padding-left: 16px;
    padding-right: 16px;
}

/* Make sure main content gets some spacing */
main {
    padding: 0;
    background: #fff;
}

/* Journey banner */
.journey-banner-section {
    position: relative;
    min-height: 520px;
    padding: 80px;
    overflow: hidden;
    background: #161616;
    color: #fff;
    isolation: isolate;
}

.journey-banner-image,
.journey-banner-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


img.journey-banner-image {
    height: 100%;
}

.journey-banner-image {
    object-fit: cover;
    z-index: 0;
}

.journey-banner-overlay {
    /* background: linear-gradient(90deg, rgba(4, 12, 18, .68) 0%, rgba(4, 12, 18, .26) 56%, rgba(4, 12, 18, .58) 100%); */
    /* background: linear-gradient(90deg, rgba(4, 12, 18, .68) 0%, rgb(4 12 18 / 0%) 56%, rgb(4 12 18 / 0%) 100%); */
    z-index: 1;
}

.journey-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 76px;
    padding-bottom: 90px;
}

.journey-intro {
    max-width: 640px;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .85s ease, transform .85s ease;
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-55px);
}

.reveal-right {
    transform: translateX(55px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}

.row > *:nth-child(2) .reveal {
    transition-delay: .08s;
}

.row > *:nth-child(3) .reveal {
    transition-delay: .16s;
}

.row > *:nth-child(4) .reveal {
    transition-delay: .24s;
}

.row > *:nth-child(5) .reveal {
    transition-delay: .32s;
}

.row > *:nth-child(6) .reveal {
    transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        transform: none;
        will-change: auto;
    }
}

@media (max-width: 575px) {
    .reveal-left {
        transform: translateX(-28px);
    }

    .reveal-right {
        transform: translateX(28px);
    }
}

.journey-eyebrow {
    margin-bottom: 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .17em;
}

.journey-intro h1,
.journey-stop-content h2 {
    margin: 0;
    color: #fff;
    font-family: var(--brand-heading-font);
    font-size: 64px;
    font-weight: 800;
    line-height: .96;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.journey-intro h1 span,
.journey-stop-content h2 span {
    display: inline-block;
    padding: .04em .16em .1em;
    background: #d9201d;
}

.journey-intro>p:not(.journey-eyebrow) {
    max-width: 490px;
    margin: 25px 0;
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    line-height: 1.7;
}

.journey-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.journey-link span {
    font-size: 1.25rem;
    transition: transform .25s ease;
}

.journey-link:hover {
    color: #fff;
}

.journey-link:hover span {
    transform: translateX(5px);
}

.numbers-section {
    position: relative;
    z-index: 4;
    margin-top: -78px;
    padding: 0 0 34px;
}

.number-card {
    min-height: 150px;
    padding: 28px 22px;
    background: #fff;
    border-left: 8px solid #d9201d;
    box-shadow: 0 16px 36px rgba(17, 27, 36, .16);
}

.number-card strong {
    display: block;
    color: #d9201d;
    font-family: var(--brand-heading-font);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: .9;
}

.number-card span {
    display: block;
    margin-top: 12px;
    color: #26323a;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.numbers-section + .everyday-value-section {
    margin-top: 0;
}

.journey-stop-content {
    max-width: 400px;
    margin-top: 150px;
    text-align: right;
}

.journey-stop-content .journey-eyebrow {
    margin-bottom: 12px;
}

.journey-stop-content h2 {
    font-size: clamp(2.15rem, 4.2vw, 4.3rem);
}

.journey-link-light {
    margin-top: 23px;
}

.journey-feature-row {
    margin-top: 52px;
}

.journey-feature-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .52);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color .25s ease, color .25s ease;
}

.journey-feature-link span {
    font-size: 1.25rem;
}

.journey-feature-link:hover {
    border-color: #d9201d;
    color: #fff;
}

@media (max-width: 991px) {
    .journey-banner-section {
        min-height: 610px;
    }

    .journey-banner-content {
        padding-top: 62px;
    }

    .journey-stop-content {
        margin-top: 55px;
        text-align: left;
    }

    .journey-feature-row {
        margin-top: 56px;
    }
}

@media (max-width: 575px) {
    .journey-banner-section {
        min-height: 680px;
    }

    .journey-banner-image {
        object-position: 43% center;
    }

    .journey-banner-overlay {
        background: rgba(0, 0, 0, .52);
    }

    .journey-banner-content {
        padding-top: 52px;
        padding-bottom: 23px;
    }

    .journey-intro h1 {
        font-size: 2.5rem;
    }

    .journey-stop-content {
        margin-top: 48px;
    }

    .journey-stop-content h2 {
        font-size: 2.35rem;
    }

    .journey-feature-row {
        margin-top: 42px;
    }
}

/* Everyday value */
.everyday-value-section {
    position: relative;
    z-index: 2;
    margin-top: -125px;
    overflow: hidden;
    background: transparent;
    min-height: 710px;
}

.everyday-value-section::before {
    content: "";
    position: absolute;
    top: 294px;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 0;
}

.everyday-red-band {
    position: relative;
    z-index: 1;
    height: 294px;
    background: #e91a10;
    clip-path: polygon(0 0, 100% 41%, 100% 100%, 0 100%);
}

.everyday-product-wrap {
    position: absolute;
    top: 84px;
    left: 50%;
    width: min(860px, 65vw);
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.everyday-product-image {
    display: block;
    width: 84%;
    mix-blend-mode: multiply;
}

.everyday-product-buttons {
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 13%;
}

.everyday-product-btn {
    padding: 9px 18px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .16);
    color: #e91a10;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.everyday-product-btn:hover {
    background: #242424;
    color: #fff;
}

.everyday-value-content {
    position: relative;
    z-index: 2;
    padding-top: 290px;
    padding-bottom: 76px;
}

.everyday-copy {
    max-width: 475px;
}

.everyday-copy h2 {
    margin-bottom: 27px;
    color: #484848;
    font-family: var(--brand-heading-font);
    font-size: 50px;
    font-weight: 800;
    line-height: .88;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.everyday-copy h2 span {
    display: inline-block;
    padding: .07em .15em .1em;
    background: #e91a10;
    color: #fff;
}

.everyday-copy p {
    margin-bottom: 12px;
    color: #4b5158;
    font-family: "Lato", sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.55;
}

.everyday-points {
    display: grid;
    gap: 24px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.everyday-points li {
    min-height: 55px;
    padding-left: 20px;
    border-left: 12px solid #e91a10;
    color: #3e454d;
    font-family: "Lato", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 500;
    line-height: 1.48;
}

@media (max-width: 991px) {
    .everyday-value-section {
        min-height: 0;
        margin-top: -95px;
    }

    .everyday-red-band {
        height: 260px;
    }

    .everyday-value-section::before {
        top: 260px;
    }

    .everyday-product-wrap {
        top: 80px;
        width: min(690px, 82vw);
    }

    .everyday-value-content {
        padding-top: 250px;
        padding-bottom: 64px;
    }

    .everyday-copy {
        max-width: none;
    }

    .everyday-points {
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .everyday-value-section {
        margin-top: -60px;
    }

    .everyday-red-band {
        height: 188px;
        clip-path: polygon(0 0, 100% 24%, 100% 100%, 0 100%);
    }

    .everyday-value-section::before {
        top: 188px;
    }

    .everyday-product-wrap {
        top: 65px;
        width: 115vw;
    }

    .everyday-product-buttons {
        top: 49%;
        padding: 0 16%;
    }

    .everyday-product-btn {
        padding: 7px 9px;
        font-size: .58rem;
    }

    .everyday-value-content {
        padding-top: 230px;
        padding-bottom: 48px;
    }

    .everyday-copy h2 {
        font-size: 3rem;
    }

    .everyday-points {
        gap: 18px;
    }
}

/* Heritage and trust */
.heritage-section {
    position: relative;
    overflow: hidden;
    background: #35434d;
    color: #fff;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.heritage-top {
    max-width: 1360px;
    padding-top: 104px;
    padding-bottom: 74px;
}

.heritage-heading-block {
    max-width: 900px;
}

.heritage-heading-block h2,
.heritage-history h2 {
    margin: 0;
    font-family: var(--brand-heading-font);
    font-size: clamp(2rem, 3.1vw, 3rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.heritage-heading-block h2 {
    font-size: 50px;
    letter-spacing: 3px;
}

.heritage-heading-block h2 span,
.heritage-history h2 span {
    display: inline-block;
    margin-top: .09em;
    padding: .1em .15em;
    background: #eb1b12;
}

.heritage-heading-block>p {
    margin: 5px 0 54px;
    color: rgba(255, 255, 255, .65);
    font-size: clamp(1.7rem, 2.25vw, 2.45rem);
    font-weight: 300;
    text-transform: uppercase;
}

.heritage-stat-grid {
    --bs-gutter-x: 4.6rem;
    --bs-gutter-y: 4rem;
}

.heritage-stat {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 126px;
    padding-bottom: 21px;
    border-bottom: 6px solid #eb1b12;
    transition: transform .25s ease, border-color .25s ease;
}

.heritage-icon {
    display: grid;
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    place-items: center;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: #fff;
    font-size: 2.65rem;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.heritage-stat p {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
}

.heritage-stat strong {
    display: block;
    font-size: clamp(1.15rem, 1.45vw, 1.65rem);
    font-weight: 800;
    white-space: nowrap;
}

.heritage-stat small {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.22;
}

.heritage-stat:hover {
    border-color: #fff;
    transform: translateY(-5px);
}

.heritage-stat:hover .heritage-icon {
    border-color: #eb1b12;
    background: #eb1b12;
    color: #fff;
    transform: rotate(10deg) scale(1.08);
}

.heritage-timeline {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.heritage-bottom {
    max-width: 1360px;
    padding-top: 160px;
    padding-bottom: 180px;
}

.heritage-history {
    max-width: 880px;
}

.heritage-history h2 {
    font-size: 50px;
    letter-spacing: 3px;
}

.heritage-history h3 {
    max-width: 820px;
    margin: 28px 0 0;
    color: #d9201d;
    font-family: var(--brand-heading-font);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.heritage-history p {
    max-width: 820px;
    margin: 64px 0 0;
    padding: 8px 0 8px 17px;
    border-left: 14px solid #eb1b12;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.heritage-history p+p {
    margin-top: 24px;
}

@media (max-width: 767px) {
    .heritage-section {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }

    .heritage-top {
        padding-top: 72px;
        padding-bottom: 52px;
    }

    .heritage-heading-block>p {
        margin-bottom: 32px;
    }

    .heritage-stat-grid {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 2rem;
    }

    .heritage-stat {
        gap: 12px;
        min-height: 76px;
        padding-bottom: 12px;
        border-width: 3px;
    }

    .heritage-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-width: 2px;
        font-size: 1.35rem;
    }

    .heritage-stat p {
        font-size: .6rem;
    }

    .heritage-stat strong {
        font-size: 1.05rem;
        white-space: normal;
    }

    .heritage-stat small {
        margin-top: 2px;
        font-size: .62rem;
    }

    .heritage-timeline {
        height: 210px;
    }

    .heritage-bottom {
        padding-top: 78px;
        padding-bottom: 92px;
    }

    .heritage-history h2 {
        font-size: 3rem;
    }

    .heritage-history p {
        margin-top: 38px;
        padding-left: 12px;
        border-width: 7px;
        font-size: .95rem;
    }

    .heritage-history p+p {
        margin-top: 16px;
    }
}

/* Brakebook catalogue */
.brakebook-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.brakebook-layout {
    min-height: 760px;
    padding-top: 148px;
    padding-bottom: 115px;
}

.brakebook-copy {
    max-width: 720px;
}

.brakebook-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 34px;
    color: #060606;
    font-size: clamp(2rem, 3.45vw, 3.45rem);
    letter-spacing: -.075em;
    line-height: 1;
}

.brakebook-mark {
    display: grid;
    width: .96em;
    height: .96em;
    margin-right: .13em;
    place-items: center;
    border: .12em solid #060606;
    border-radius: 50%;
    font-size: .65em;
    line-height: 1;
}

.brakebook-logo strong {
    font-weight: 800;
}

.brakebook-logo em {
    font-style: normal;
    font-weight: 300;
}

.brakebook-copy h2 {
    margin: 0;
    color: #474747;
    font-family: var(--brand-heading-font);
    font-size: clamp(3rem, 5.15vw, 5.45rem);
    font-weight: 800;
    line-height: .93;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.brakebook-copy h2 span {
    display: inline-block;
    padding: .08em .13em .11em;
    background: #ed1b10;
    color: #fff;
    white-space: nowrap;
}

.brakebook-visual {
    position: relative;
    min-height: 460px;
    max-width: 600px;
    margin: 0 auto;
}

.catalogue-screen {
    position: absolute;
    overflow: hidden;
    background: #f8f8f8;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .09);
}

.catalogue-screen::after {
    content: "";
    position: absolute;
    right: 6%;
    bottom: 12%;
    left: 7%;
    height: 11px;
    border-top: 1px solid #cecece;
    border-bottom: 1px solid #e4e4e4;
    box-shadow: 0 26px 0 #dedede, 0 52px 0 #dedede;
}

.catalogue-screen-back {
    top: 0;
    right: 0;
    width: 76%;
    height: 284px;
}

.catalogue-screen-front {
    top: 142px;
    left: 0;
    width: 58%;
    height: 224px;
}

.catalogue-bar {
    height: 21px;
    background: #e81812;
}

.catalogue-nav {
    height: 33px;
    margin: 12px 10px;
    background: linear-gradient(90deg, #e81812 0 22%, #e8e8e8 22% 100%);
}

.catalogue-lines {
    height: 45px;
    margin: 14px 9%;
    background: #ececec;
}

.catalogue-lines.short {
    width: 58%;
    height: 20px;
}

.catalogue-list {
    height: 25px;
    margin: 16px 8%;
    background: #e81812;
    box-shadow: 0 39px 0 #e3e3e3, 0 78px 0 #e3e3e3;
}

.catalogue-list.small {
    width: 46%;
    height: 10px;
    margin-top: 112px;
    background: #d4d4d4;
    box-shadow: none;
}

.brakebook-products {
    position: absolute;
    right: -6%;
    bottom: 0;
    z-index: 2;
    width: 105%;
    mix-blend-mode: multiply;
}

.brakebook-button {
    position: absolute;
    z-index: 3;
    right: 17%;
    bottom: 14px;
    padding: 12px 32px;
    border-radius: 2px;
    background: #ed1b10;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease;
}

.brakebook-button:hover {
    background: #343d44;
    color: #fff;
}

@media (max-width: 991px) {
    .brakebook-layout {
        min-height: 0;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .brakebook-copy {
        max-width: none;
    }

    .brakebook-visual {
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .brakebook-layout {
        padding-top: 78px;
        padding-bottom: 62px;
    }

    .brakebook-logo {
        margin-bottom: 25px;
    }

    .brakebook-copy h2 {
        font-size: 3.25rem;
    }

    .brakebook-copy h2 span {
        white-space: normal;
    }

    .brakebook-visual {
        min-height: 340px;
        transform: scale(.92);
        transform-origin: top center;
        margin-bottom: -25px;
    }

    .brakebook-button {
        right: 20%;
        padding: 10px 22px;
        font-size: .85rem;
    }
}

/* Brand marquee */
/* .brands-section { overflow: hidden; padding: 76px 0 0; background: #f7f7f7; border-top: 8px solid #d9201d; } */
.brands-heading-wrap { width: min(1320px, calc(100% - 32px)); margin: 0 auto 30px; }
.brands-heading-wrap p { margin: 0 0 8px; color: #d9201d; font: 900 .76rem/1 Lato, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.brands-heading-wrap h2 { margin: 0; color: #34434d; font: 900 clamp(2.6rem, 4vw, 4.2rem)/.9 Lato, sans-serif; letter-spacing: -.06em; text-transform: uppercase; }
.brands-heading-wrap h2 span { display: inline-block; padding: .08em .14em .11em; background: #d9201d; color: #fff; }
.brands-marquee { border-top: 1px solid #e1e1e1; border-bottom: 1px solid #e1e1e1; background: #fff; }
.brands-marquee-track { display: flex; width: 200%; animation: brand-marquee 24s linear infinite; will-change: transform; }
.brands-marquee-track img { display: block; flex: 0 0 50%; width: 50%; height: clamp(180px, 18vw, 310px); object-fit: contain; }
.brands-marquee:hover .brands-marquee-track { animation-play-state: paused; }
@keyframes brand-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.values-section {
    position: relative;
    padding: 86px 0;
    background: #edf0f2;
}

.value-panel,
.value-card {
    height: 100%;
    background: #fff;
    border-top: 6px solid #d9201d;
    box-shadow: 0 14px 34px rgba(17, 27, 36, .1);
}

.value-panel {
    padding: 36px;
}

.value-panel h2,
.core-values h2 {
    margin: 0 0 20px;
    color: #34434d;
    font-family: var(--brand-heading-font);
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: .92;
    text-transform: uppercase;
}

.core-values h2 span {
    display: inline-block;
    padding: .06em .16em .1em;
    background: #d9201d;
    color: #fff;
}

.value-panel p,
.value-card p {
    margin: 0;
    color: #4a5962;
    font-size: .96rem;
    line-height: 1.75;
}

.value-panel p+p {
    margin-top: 16px;
}

.core-values {
    margin-top: 62px;
}

.value-card {
    padding: 28px;
}

.value-card h3 {
    margin: 0 0 14px;
    color: #26323a;
    font-family: var(--brand-heading-font);
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
}

.brands-section { padding: 58px 0; background: #edf0f2; }
.brands-static { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.brand-logo-tile { height: 245px; border-bottom: 4px solid #d9201d; background-color: #edf0f2; background-image: url('img/partner-brands.png'); background-repeat: no-repeat; background-size: 300% auto; background-blend-mode: multiply; transition: transform .25s ease, border-color .25s ease; }
.brand-power { background-position: 0 center; }
.brand-cada { background-position: 50% center; }
.brand-rado { background-position: 100% center; }
.brand-logo-tile:hover { border-color: #34434d; transform: translateY(-6px); }

@media (max-width: 575px) {
    .brands-section { padding-top: 52px; }
    .brands-heading-wrap { margin-bottom: 22px; }
    .brands-marquee-track { animation-duration: 17s; }
    .brands-marquee-track img { height: 132px; }
    .brands-section { padding: 34px 0; }
    .brands-static { grid-template-columns: 1fr; gap: 15px; }
    .brand-logo-tile { height: 155px; background-size: 300% auto; }
    .brand-power { background-position: 0 center; }
    .brand-cada { background-position: 50% center; }
    .brand-rado { background-position: 100% center; }
}

/* Industries content section */
.industries-section {
    width: 100%;
    background: #fff;
    /* border-top: 1px solid #eeeeee; */
}

.industries-layout {
    padding-top: 120px;
    padding-bottom: 120px;
}

.industries-intro {
    max-width: 500px;
}

.industries-intro .brakebook-logo {
    display: none;
}

.industries-intro h2 {
    margin: 0 0 25px;
    color: #474747;
    font-family: var(--brand-heading-font);
    font-size: clamp(3.1rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.industries-intro h2 span {
    display: inline-block;
    padding: .08em .13em .11em;
    background: #d9201d;
    color: #fff;
}

.industries-intro>p,
.industries-summary {
    margin: 0;
    color: #4b535c;
    font-family: "Lato", sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
}

.industries-summary {
    margin-bottom: 25px;
    font-weight: 700;
}

.industries-list {
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
}

.industry-item {
    min-height: 134px;
    padding: 23px 25px;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    transition: background .2s ease;
}

.industry-item span {
    display: block;
    margin-bottom: 19px;
    color: #d9201d;
    font-family: "Lato", sans-serif;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.industry-item h3 {
    margin: 0;
    color: #363636;
    font-family: var(--brand-heading-font);
    font-size: clamp(1.05rem, 1.35vw, 1.45rem);
    font-weight: 900;
    line-height: 1.08;
}

.industry-item:hover {
    background: #d9201d;
}

.industry-item:hover span,
.industry-item:hover h3 {
    color: #fff;
}

@media (max-width: 991px) {
    .industries-layout {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .industries-intro {
        max-width: none;
    }

    .industries-summary {
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    .industries-layout {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .industries-intro h2 {
        font-size: 3.3rem;
    }

    .industry-item {
        min-height: 112px;
        padding: 18px 15px;
    }

    .industry-item h3 {
        font-size: 1rem;
    }
}

/* Compact industries redesign */
.industries-section {
    background: #fff;
    color: #3d454d;
}

.industries-layout {
    padding-top: 76px;
    padding-bottom: 76px;
}

.industries-layout>.row {
    --bs-gutter-y: 1.5rem;
}

.industries-layout>.row>.col-lg-7,
.industries-layout>.row>.col-lg-5 {
    width: 100%;
}

.industries-intro {
    padding-left: 28px;
    border-left: 9px solid #d9201d;
}

.industries-intro h2 {
    margin-bottom: 15px;
    color: #3d454d;
    font-size: 50px;
    letter-spacing: 3px;
    white-space: nowrap;
}

.industries-intro>p,
.industries-summary {
    color: #535b63;
    font-size: 18px;
    line-height: 1.62;
}

.industries-summary {
    margin-bottom: 60px;
    color: #3d454d;
}

.industries-list {
    border: 0;
}

.industry-item {
    min-height: 94px;
    padding: 17px 0 17px 20px;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
    border-left: 5px solid transparent;
    transition: border-color .22s ease, transform .22s ease;
}

.industry-item span {
    margin-bottom: 9px;
    color: #d9201d;
}

.industry-item h3 {
    color: #3d454d;
    font-size: clamp(1rem, 1.25vw, 1.35rem);
}

.industry-item:hover {
    background: transparent;
    border-left-color: #d9201d;
    transform: translateX(6px);
}

.industry-item:hover span {
    color: #d9201d;
}

.industry-item:hover h3 {
    color: #d9201d;
}

@media (max-width: 991px) {
    .industries-layout {
        padding-top: 62px;
        padding-bottom: 62px;
    }
}

@media (max-width: 575px) {
    .industries-layout {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .industries-intro {
        padding-left: 18px;
        border-left-width: 6px;
    }

    .industries-intro h2 {
        font-size: 3.3rem;
        white-space: normal;
    }

    .industry-item {
        min-height: 102px;
        padding: 17px 15px;
    }
}

/* Contact service line */
.contact-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #123044 url('img/touch-img.png') center/cover no-repeat;
    color: #fff;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
}

.contact-shade {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(6, 24, 39, .72) 0%, rgba(6, 24, 39, .52) 52%, rgba(6, 24, 39, .42) 100%);
}

.contact-layout {
    position: relative;
    z-index: 1;
    padding-top: 98px;
    padding-bottom: 40px;
}

.contact-intro {
    max-width: 650px;
    margin-left: auto;
    padding: 130px 0 80px;
}

.contact-label {
    margin: 0;
    color: #fff;
    font-family: var(--brand-heading-font);
    font-size: 50px;
    letter-spacing: 3px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
}

.contact-intro h2 {
    margin: 7px 0 28px;
    color: #fff;
    font-family: var(--brand-heading-font);
    font-size: 50px;
    font-weight: 800;
    line-height: .92;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-intro h2 span {
    display: inline-block;
    padding: .08em .14em .11em;
    background: #eb1b10;
    font-size: 50px;
    letter-spacing: 3px;
}

.contact-description {
    max-width: 590px;
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    font-weight: 600;
    line-height: 1.55;
}

.contact-form-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 34px 26px 36px;
    background: #fff;
    color: #414141;
}

.contact-form-card h3 {
    margin: 0 0 23px;
    color: #4a4a4a;
    font-family: var(--brand-heading-font);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 10px 12px;
    border: 1px solid #c9c9c9;
    border-radius: 0;
    background: #fafafa;
    color: #424242;
    font: inherit;
    font-size: 1rem;
    outline-color: #eb1b10;
}

.contact-form-card input,
.contact-form-card select {
    height: 38px;
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 115px;
}

.contact-form-card button {
    padding: 10px 18px;
    border: 0;
    border-radius: 0;
    background: #373737;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease;
}

.contact-form-card button:hover {
    background: #eb1b10;
}

.contact-form-message {
    display: none;
    margin: 14px 0 0;
    color: #258641;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.4;
}

.contact-form-message.show {
    display: block;
}

/* Content refresh section styling */
.journey-intro {
    max-width: 760px;
}

.journey-intro h1 {
    max-width: 820px;
    font-size: 47px;
    line-height: .94;
}

.journey-stop-content {
    padding: 28px 30px;
    background: rgba(10, 18, 26, .58);
    border-left: 8px solid #d9201d;
    backdrop-filter: blur(4px);
}

.journey-stop-content h2 {
    font-size: 45px;
}

.numbers-section {
    background: #fff;
}

.numbers-section .row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.number-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 0;
    border-bottom: 6px solid #d9201d;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.number-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 6px;
    background: #d9201d;
    transition: width .34s ease;
}

.number-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(217, 32, 29, .08), transparent);
    transform: skewX(-18deg);
    transition: left .55s ease;
    pointer-events: none;
}

.number-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 48px rgba(17, 27, 36, .22);
}

.number-card:hover::before {
    width: 100%;
}

.number-card:hover::after {
    left: 120%;
}

.number-card strong,
.number-card span {
    position: relative;
    z-index: 1;
    transition: transform .3s ease, color .3s ease;
}

.number-card:hover strong,
.number-card:hover span {
    transform: translateX(4px);
}

.numbers-section + .everyday-value-section {
    padding-top: 34px;
}

.everyday-value-section {
    min-height: 0;
}

.everyday-red-band {
    height: 255px;
}

.everyday-value-section::before {
    top: 250px;
}

.everyday-product-wrap {
    top: 44px;
    width: min(720px, 54vw);
    opacity: .95;
}

.everyday-value-content {
    padding-top: 260px;
}

.everyday-copy {
    max-width: 620px;
}

.everyday-copy h2,
.heritage-heading-block h2,
.heritage-history h2,
.industries-intro h2,
.contact-label,
.contact-intro h2 {
    letter-spacing: 0;
}

.everyday-copy p strong {
    display: block;
    color: #d9201d;
    font-size: 1.1rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.everyday-points {
    gap: 16px;
}

.everyday-points li {
    min-height: 0;
    padding: 20px 20px 20px 22px;
    border-left-width: 7px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 35, 46, .08);
    font-size: .98rem;
    line-height: 1.58;
}

.everyday-points li strong {
    display: block;
    margin-bottom: 8px;
    color: #26323a;
    font-size: 1.16rem;
    text-transform: uppercase;
}

.everyday-points li em {
    display: inline-block;
    margin-top: 10px;
    color: #d9201d;
    font-style: normal;
    font-weight: 900;
}

.heritage-section {
    clip-path: none;
}

.heritage-top {
    padding-top: 92px;
}

.heritage-heading-block {
    max-width: 1040px;
}

.heritage-heading-block>p {
    max-width: 780px;
    margin: 16px 0 38px;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    text-transform: none;
}

.heritage-stat-grid {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

.heritage-stat {
    display: block;
    min-height: 100%;
    height: 100%;
    padding: 22px 20px 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 4px solid #d9201d;
    background: rgba(255, 255, 255, .06);
}

.heritage-icon {
    display: inline-grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    border-width: 2px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .02em;
}

.heritage-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.heritage-stat p {
    text-transform: none;
}

.heritage-stat strong {
    white-space: normal;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.heritage-stat small {
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
    line-height: 1.45;
}

.heritage-bottom {
    padding-top: 82px;
    padding-bottom: 135px;
}

.heritage-history {
    max-width: 1080px;
}

.heritage-history p {
    max-width: 980px;
    margin-top: 28px;
    padding: 20px 24px;
    border-left-width: 6px;
    background: rgba(255, 255, 255, .07);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

.values-section {
    padding: 92px 0;
}

.values-section .row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
}

.value-panel,
.value-card {
    border-top: 0;
    border-left: 6px solid #d9201d;
    box-shadow: 0 16px 34px rgba(17, 27, 36, .09);
}

.value-panel {
    padding: 34px 32px;
}

.core-values {
    margin-top: 70px;
}

.core-values .heritage-heading-block {
    margin-bottom: 30px;
}

.core-values .heritage-heading-block>p {
    color: #4a5962;
}

.value-card {
    padding: 28px 24px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(17, 27, 36, .14);
}

.industries-section {
    background: #f8f9fa;
}

.industries-layout {
    padding-top: 92px;
    padding-bottom: 92px;
}

.industries-layout>.row>.col-lg-7 {
    width: 46%;
}

.industries-layout>.row>.col-lg-5 {
    width: 54%;
}

.industries-intro {
    max-width: 620px;
    padding: 38px 34px;
    border-left: 9px solid #d9201d;
    background: #fff;
    box-shadow: 0 16px 36px rgba(17, 27, 36, .08);
}

.industries-intro h2 {
    white-space: normal;
}

.industries-intro>p+p {
    margin-top: 15px;
}

.industries-summary {
    margin: 0 0 20px;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.industries-list>[class*="col-"] {
    width: auto;
}

.industry-item {
    height: 100%;
    min-height: 116px;
    padding: 20px 18px;
    border: 0;
    border-bottom: 5px solid #d9201d;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 27, 36, .07);
}

.industry-item:hover {
    background: #fff;
}

.contact-section {
    clip-path: none;
}

.contact-layout {
    padding-top: 86px;
    padding-bottom: 86px;
}

.contact-intro {
    margin-left: 0;
    padding: 54px 0;
}

.contact-label {
    max-width: 650px;
    color: #fff;
    font-size: clamp(1.05rem, 2.6vw, 2rem);
    line-height: 1.15;
}

.contact-intro h2,
.contact-intro h2 span {
    font-size: clamp(2.25rem, 4.8vw, 4.5rem);
}

.contact-description {
    margin-top: 16px;
}

.contact-form-card {
    max-width: 470px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.contact-form-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.mission-vision-tabs {
    max-width: 980px;
    margin: 0 auto;
}

.mission-vision-buttons {
    display: inline-flex;
    padding: 6px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 27, 36, .1);
}

.mission-tab {
    min-width: 190px;
    padding: 15px 24px;
    border: 0;
    background: transparent;
    color: #34434d;
    font-family: var(--brand-heading-font);
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.mission-tab:hover {
    transform: translateY(-2px);
}

.mission-tab.active {
    background: #d9201d;
    color: #fff;
}

.mission-vision-content {
    margin-top: 22px;
}

.mission-vision-content .value-panel {
    min-height: 260px;
    animation: tabPanelIn .35s ease both;
}

.mission-vision-content .value-panel[hidden] {
    display: none;
}

@keyframes tabPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.numbers-section + .everyday-value-section {
    padding-top: 0;
}

.everyday-value-section {
    margin-top: 0;
    background: #fff;
}

.everyday-value-section::before {
    top: 130px;
    background: #fff;
}

.everyday-red-band {
    height: 128px;
    clip-path: polygon(0 0, 100% 26%, 100% 100%, 0 100%);
}

.everyday-product-wrap {
    top: -92px;
    width: min(700px, 50vw);
    transition: transform .35s ease;
}

.everyday-product-wrap:hover {
    transform: translateX(-50%) translateY(-8px) scale(1.02);
}

.everyday-product-image {
    width: 100%;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .2));
}

.everyday-value-content {
    padding-top: 250px;
    padding-bottom: 54px;
}

.everyday-value-content .row {
    --bs-gutter-x: 2.15rem;
    align-items: flex-start;
}

.everyday-value-content .offset-lg-1 {
    margin-left: 0;
}

.everyday-value-content .col-lg-6 {
    width: 43%;
}

.everyday-value-content .col-lg-5 {
    width: 57%;
}

.everyday-copy h2 {
    margin-bottom: 14px;
}

.everyday-copy p {
    margin-bottom: 10px;
}

.everyday-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    margin-top: 0;
}

.everyday-points li {
    position: relative;
    padding: 16px 16px 16px 18px;
    border: 1px solid #ececec;
    border-left: 5px solid #e91a10;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.everyday-points li:hover {
    border-color: #e91a10;
    box-shadow: 0 16px 34px rgba(22, 35, 46, .13);
    transform: translateY(-5px);
}

.number-card,
.heritage-stat,
.value-panel,
.contact-form-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.heritage-stat:hover,
.value-panel:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
}

.everyday-copy p,
.everyday-points li,
.value-panel p,
.value-card p,
.industries-intro>p,
.industries-summary,
.contact-description {
    font-size: .94rem;
}

.everyday-points li strong,
.value-card h3,
.industry-item h3 {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .contact-section {
        min-height: 0;
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
    }

    .contact-layout {
        padding-top: 84px;
        padding-bottom: 65px;
    }

    .contact-intro {
        margin: 0;
        padding: 55px 0 0;
    }

    .contact-form-card {
        max-width: 500px;
    }
}

@media (max-width: 575px) {
    .contact-layout {
        padding-top: 60px;
        padding-bottom: 46px;
    }

    .contact-intro {
        padding-top: 40px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }
}

/* Footer */
.site-footer {
    background: #fff;
    border-top: 8px solid #d9201d;
    color: #242424;
}

.footer-main {
    padding: 74px 0 60px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #242424;
    font-family: "Lato", sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.04;
    text-decoration: none;
}

.footer-brand img {
    width: 112px;
    height: 82px;
    object-fit: contain;
}

.footer-about {
    max-width: 410px;
    margin: 28px 0 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.72;
}

.site-footer h3 {
    position: relative;
    margin: 5px 0 27px;
    padding-bottom: 15px;
    color: #202020;
    font-family: "Lato", sans-serif;
    font-size: 1.52rem;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: #d9201d;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    position: relative;
    display: inline-block;
    padding-left: 0;
    color: #444;
    font-size: .98rem;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.footer-links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: #d9201d;
    transform: translateY(-50%);
    transition: width .2s ease;
}

.footer-links a:hover {
    padding-left: 15px;
    color: #d9201d;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact {
    display: grid;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-size: .96rem;
    line-height: 1.45;
}

.footer-contact li>span {
    color: #d9201d;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.footer-contact li>.footer-location-icon {
    position: relative;
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    border: 2px solid #d9201d;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.footer-location-icon::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d9201d;
}

.footer-contact .footer-location-svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: #d9201d;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.footer-contact .footer-phone-svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: #d9201d;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.footer-contact a {
    color: #444;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-contact a:hover {
    color: #d9201d;
}

.footer-contact address {
    margin: 0;
    font-style: normal;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.footer-socials a {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid #d9201d;
    border-radius: 50%;
    color: #d9201d;
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-socials a:hover {
    background: #d9201d;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    position: relative;
    padding: 20px 0;
    background: #d9201d;
    color: #fff;
}

.footer-bottom-inner {
    position: relative;
    padding-right: 76px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
}

.footer-bottom strong {
    color: #fff;
    font-weight: 900;
}

.footer-bottom a {
    position: relative;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1900;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d9201d;
    border-radius: 50%;
    background: #d9201d;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-top-button:hover {
    background: #fff;
    border-color: #222;
    color: #000;
    transform: translateY(-4px);
}

@media (max-width: 991px) {
    .footer-main {
        padding-top: 60px;
    }

    .footer-about {
        max-width: 600px;
    }
}

@media (max-width: 575px) {
    .footer-main {
        padding: 48px 0 36px;
    }

    .footer-brand {
        font-size: 1.35rem;
    }

    .footer-brand img {
        width: 82px;
        height: 62px;
    }

    .footer-about {
        font-size: .92rem;
    }

    .site-footer h3 {
        margin-top: 8px;
        font-size: 1.25rem;
    }

    .footer-contact {
        margin-top: -6px;
    }

    .footer-bottom-inner {
        padding-right: 55px;
        text-align: left;
    }

    .footer-bottom p {
        font-size: .76rem;
    }

    .footer-top-button {
        right: 14px;
        bottom: 16px;
        width: 34px;
        height: 34px;
    }
}

/* Responsive site-wide refinements */
.site-header { position: sticky; top: 0; z-index: 1; box-shadow: 0 3px 12px rgba(0,0,0,.14); }
.main-nav { z-index: 2001; }

@media (max-width: 1199px) {
    .site-header .container { padding-left: 24px; padding-right: 24px; }
    .main-nav ul { gap: 17px; }
    .journey-banner-section { padding: 60px 0; }
    .heritage-stat-grid { --bs-gutter-x: 2.2rem; }
    .heritage-stat { gap: 14px; }
    .heritage-icon { flex-basis: 70px; width: 70px; height: 70px; font-size: 2rem; }
    .contact-intro { padding-left: 24px; }
}

@media (max-width: 991px) {
    .site-header .container { min-height: 64px; }
    .main-nav { top: 100%; box-shadow: 0 10px 18px rgba(0,0,0,.16); }
    .main-nav ul { align-items: stretch; }
    .main-nav a { display: block; }
    .journey-banner-section { min-height: 0; padding: 68px 0 80px; }
    .journey-banner-content { padding-top: 0; }
    .journey-intro { max-width: 650px; }
    .journey-stop-content { max-width: 560px; }
    .journey-feature-row { margin-top: 42px; }
    .everyday-copy { margin-bottom: 8px; }
    .everyday-points { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 30px; }
    .heritage-top, .heritage-bottom { max-width: 960px; }
    .heritage-history { max-width: 100%; }
    .heritage-history p { max-width: 100%; }
    .industries-intro { margin-bottom: 4px; }
    .contact-intro { padding-left: 0; }
    .contact-form-card { margin-top: 14px; }
    .footer-main .row { --bs-gutter-y: 2.4rem; }
}

@media (max-width: 575px) {
    body { overflow-x: hidden; }
    .site-header .container { min-height: 58px; padding: 8px 16px; }
    .logo { gap: 9px; font-size: .88rem; }
    .logo img { height: 36px; max-width: 175px; object-fit: contain; }
    .nav-toggle { padding: 6px; font-size: 25px; line-height: 1; }
    .main-nav { top: 100%; }
    .main-nav ul { padding: 0; }
    .main-nav a { padding: 13px 20px; }
    .main-nav .dropdown { margin: 0 12px 8px; }
    .journey-banner-section { padding: 52px 0 64px; }
    .journey-intro h1 { font-size: clamp(2.2rem, 11vw, 3.1rem); }
    .journey-intro > p:not(.journey-eyebrow) { font-size: .92rem; }
    .journey-stop-content { margin-top: 40px; }
    .numbers-section { margin-top: -34px; padding-bottom: 28px; }
    .number-card { min-height: 128px; padding: 20px 14px; }
    .number-card span { font-size: .78rem; }
    .values-section { padding: 58px 0; }
    .value-panel, .value-card { padding: 22px 18px; }
    .journey-feature-row { margin-top: 30px; }
    .journey-feature-link { font-size: .76rem; }
    .everyday-product-wrap { width: 122vw; left: 48%; }
    .everyday-copy p { font-size: .94rem; }
    .everyday-points { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .everyday-points li { min-height: 0; padding-left: 14px; border-left-width: 7px; font-size: .94rem; }
    .heritage-heading-block h2 { font-size: clamp(2.35rem, 10vw, 3.2rem); letter-spacing: 0; }
    .heritage-heading-block > p { font-size: 1.1rem; }
    .heritage-stat-grid { --bs-gutter-x: 1rem; --bs-gutter-y: 1.2rem; }
    .heritage-timeline { height: 155px; }
    .heritage-history h2 { font-size: clamp(2.3rem, 10vw, 3rem); letter-spacing: 0; }
    .heritage-history p { font-size: .9rem; }
    .industries-layout > .row { --bs-gutter-y: 1.2rem; }
    .industries-summary { font-size: .94rem; }
    .industry-item span { font-size: .63rem; }
    .contact-intro h2 { font-size: clamp(2.45rem, 10vw, 3.35rem); }
    .contact-description { font-size: .92rem; }
    .contact-form-card { max-width: none; padding: 26px 18px; }
    .contact-form-card input, .contact-form-card select { height: 44px; }
    .contact-form-card input, .contact-form-card select, .contact-form-card textarea { font-size: .92rem; }
    .footer-main { padding-top: 46px; }
    .footer-contact li { font-size: .9rem; }
    .footer-socials { margin-top: 18px; }
}

/* Product composition sizing */
.everyday-product-image { width: 100%; max-width: 780px; height: auto; margin: 0 auto; object-fit: contain; }

@media (max-width: 991px) {
    .everyday-product-wrap { width: min(720px, 94vw); }
    .everyday-product-image { max-width: 100%; }
}

@media (max-width: 575px) {
    .everyday-product-wrap { top: 58px; left: 50%; width: 112vw; }
    .everyday-product-image { width: 100%; }
    .everyday-product-buttons { top: 47%; padding: 0 15%; }
}

/* Final content layout overrides */
@media (min-width: 992px) {
    .heritage-stat-grid>.col-md-4 {
        width: 33.333333%;
    }

    .heritage-stat-grid>.col-md-4:nth-child(4),
    .heritage-stat-grid>.col-md-4:nth-child(5) {
        width: 50%;
    }
}

@media (max-width: 1199px) {
    .heritage-icon {
        width: 46px;
        height: 46px;
        font-size: .78rem;
    }
}

@media (max-width: 991px) {
    .journey-intro h1 {
        max-width: 720px;
        font-size: clamp(2.6rem, 8vw, 4.5rem);
    }

    .journey-stop-content {
        max-width: 420px;
        padding: 22px 24px;
    }

    .numbers-section {
        margin-top: -48px;
    }

    .everyday-product-wrap {
        top: -46px;
        width: min(640px, 86vw);
    }

    .everyday-value-content {
        padding-top: 132px;
    }

    .everyday-value-content .col-lg-6,
    .everyday-value-content .col-lg-5 {
        width: 100%;
    }

    .heritage-stat-grid>.col-md-4 {
        width: 50%;
    }

    .heritage-stat {
        gap: 16px;
        padding: 22px 18px;
    }

    .industries-layout>.row>.col-lg-7,
    .industries-layout>.row>.col-lg-5 {
        width: 100%;
    }

    .industries-intro {
        max-width: none;
    }

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

    .contact-section {
        clip-path: none;
    }

    .contact-intro {
        padding: 20px 0 0;
    }
}

@media (max-width: 575px) {
    .journey-banner-section {
        min-height: 0;
        padding-bottom: 84px;
    }

    .journey-intro h1 {
        font-size: clamp(2.2rem, 12vw, 3.15rem);
        line-height: .98;
    }

    .journey-stop-content {
        margin-top: 32px;
        padding: 18px;
    }

    .numbers-section {
        margin-top: -46px;
    }

    .number-card {
        min-height: 118px;
        padding: 20px 14px 18px;
    }

    .number-card strong {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .everyday-red-band {
        height: 118px;
    }

    .everyday-value-section::before {
        top: 116px;
    }

    .everyday-product-wrap {
        top: -16px;
        width: 105vw;
    }

    .everyday-value-content {
        padding-top: 130px;
    }

    .everyday-copy h2,
    .heritage-heading-block h2,
    .heritage-history h2,
    .industries-intro h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: .96;
    }

    .everyday-points li {
        padding: 18px 16px;
    }

    .everyday-points {
        grid-template-columns: 1fr;
    }

    .heritage-top {
        padding-top: 64px;
        padding-bottom: 46px;
    }

    .heritage-heading-block>p {
        font-size: .98rem;
        line-height: 1.65;
    }

    .heritage-stat-grid>.col-md-4 {
        width: 100%;
    }

    .heritage-stat {
        min-height: 0;
    }

    .heritage-history p {
        margin-top: 18px;
        padding: 16px;
    }

    .values-section {
        padding: 54px 0;
    }

    .value-panel h2,
    .core-values h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .industries-layout {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .industries-intro {
        padding: 24px 18px;
    }

    .industries-list {
        grid-template-columns: 1fr;
    }

    .industry-item {
        min-height: 0;
    }

    .contact-layout {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .contact-label {
        font-size: 1.05rem;
    }

    .contact-intro h2,
    .contact-intro h2 span {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/* Final header and product visibility fix */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.main-nav .dropdown {
    z-index: 10000;
}

.everyday-product-wrap {
    top: 22px;
    width: min(650px, 48vw);
}

.everyday-value-section::before {
    top: 185px;
}

.everyday-red-band {
    height: 190px;
}

.everyday-value-content {
    padding-top: 315px;
}

@media (max-width: 991px) {
    .everyday-product-wrap {
        top: 18px;
        width: min(610px, 84vw);
    }

    .everyday-value-section::before {
        top: 170px;
    }

    .everyday-red-band {
        height: 174px;
    }

    .everyday-value-content {
        padding-top: 285px;
    }
}

@media (max-width: 575px) {
    .everyday-product-wrap {
        top: 16px;
        width: 96vw;
    }

    .everyday-value-section::before {
        top: 132px;
    }

    .everyday-red-band {
        height: 136px;
    }

    .everyday-value-content {
        padding-top: 205px;
    }

    .mission-vision-tabs {
        max-width: none;
    }

    .mission-vision-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .mission-tab {
        min-width: 0;
        padding: 13px 10px;
        font-size: .9rem;
    }

    .mission-vision-content .value-panel {
        min-height: 0;
    }
}

/* Angled why-choose and full-width mission/vision */
.heritage-section {
    position: relative;
    overflow: hidden;
    background: #34434d;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.heritage-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 118px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 28%, 0 56%);
    z-index: 0;
}

.heritage-section>.container,
.heritage-timeline {
    position: relative;
    z-index: 1;
}

.heritage-top {
    padding-top: 180px;
}

.values-section {
    padding: 0;
    background: #fff;
}

.values-section>.container {
    max-width: none;
    padding: 0;
    margin-bottom: 50px;
}

.mission-vision-tabs {
    width: min(1320px, calc(100% - 32px));
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 0 0;
    background: transparent;
}

.mission-vision-buttons {
    display: inline-flex;
    width: auto;
    padding: 6px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 27, 36, .12);
}

.mission-tab {
    min-width: 210px;
    padding: 15px 26px;
    border-bottom: 0;
    color: #34434d;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.mission-tab:hover {
    transform: translateY(-2px);
    background: #f2f4f5;
}

.mission-tab.active {
    background: #d9201d;
    color: #fff;
}

.mission-vision-content {
    margin-top: 20px;
}

.mission-vision-content .value-panel {
    min-height: 0;
    padding: 42px 0 42px 24px;
    border: 0;
    border-left: 7px solid #d9201d;
    background: #fff;
    box-shadow: 0 18px 44px rgba(17, 27, 36, .1);
}

.mission-vision-content .value-panel h2 {
    max-width: none;
    margin-inline: 0;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.mission-vision-content .value-panel p {
    max-width: 920px;
    margin-inline: 0;
}

.core-values {
    max-width: 1320px;
    margin: 58px auto 0;
    padding: 0 16px 92px;
}

.core-values-section {
    background: #fff;
    padding-top: 1px;
}

.core-values .row {
    counter-reset: coreValue;
}

.core-values .value-card {
    position: relative;
    overflow: hidden;
    padding: 30px 24px 28px 82px;
    border: 0;
    border-top: 1px solid #e3e7ea;
    background: #fff;
    box-shadow: none;
}

.core-values .value-card::before {
    counter-increment: coreValue;
    content: "0" counter(coreValue);
    position: absolute;
    top: 26px;
    left: 24px;
    color: #d9201d;
    font-family: var(--brand-heading-font);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

.core-values .value-card::after {
    content: "";
    position: absolute;
    top: 68px;
    bottom: 24px;
    left: 38px;
    width: 2px;
    background: #d9201d;
    opacity: .35;
}

.core-values .value-card:hover {
    background: #f8f9fa;
    box-shadow: none;
    transform: translateY(-4px);
}

.industries-section {
    background: #34434d;
    color: #fff;
}

.industries-intro {
    border-left: 0;
    background: transparent;
    box-shadow: none;
}

.industries-intro h2,
.industries-intro>p,
.industries-summary {
    color: #fff;
}

.industries-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    counter-reset: capability;
}

.industry-item {
    position: relative;
    min-height: 0;
    padding: 18px 18px 18px 58px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    box-shadow: none;
}

.industry-item::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 18px;
    width: 18px;
    height: 18px;
    border: 2px solid #d9201d;
    border-radius: 50%;
    background: #34434d;
    box-shadow: 0 0 0 5px rgba(217, 32, 29, .18);
}

.industry-item span {
    display: none;
}

.industry-item h3 {
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
}

.industry-item:hover {
    background: rgba(255, 255, 255, .06);
    transform: translateX(6px);
}

.industry-item:hover h3 {
    color: #fff;
}

@media (max-width: 575px) {
    .heritage-section {
        clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    }

    .heritage-section::before {
        height: 76px;
    }

    .heritage-top {
        padding-top: 86px;
    }

    .mission-tab {
        min-width: 0;
        padding: 13px 10px;
        font-size: .92rem;
    }

    .mission-vision-content .value-panel {
        padding: 28px 18px;
    }

    .core-values {
        margin-top: 44px;
        padding-bottom: 62px;
    }

    .core-values .value-card {
        padding: 24px 18px 22px 68px;
    }

    .core-values .value-card::before {
        left: 18px;
        font-size: 1.25rem;
    }

    .core-values .value-card::after {
        left: 30px;
    }

    .industry-item {
        padding-left: 48px;
    }

    .industry-item::before {
        left: 14px;
    }
}

/* Clean left/right scroll animation without changing the page design */
.reveal {
    opacity: 0;
    transition: opacity .9s ease, transform .9s cubic-bezier(.18, .78, .28, 1);
    will-change: opacity, transform;
}

.reveal:not(.is-visible) {
    transform: translate3d(0, 34px, 0);
}

.reveal-left:not(.is-visible) {
    transform: translate3d(-72px, 0, 0);
}

.reveal-right:not(.is-visible) {
    transform: translate3d(72px, 0, 0);
}

.reveal.is-visible {
    opacity: 1;
}

.row > *:nth-child(2) .reveal {
    transition-delay: .1s;
}

.row > *:nth-child(3) .reveal {
    transition-delay: .2s;
}

.row > *:nth-child(4) .reveal {
    transition-delay: .3s;
}

.row > *:nth-child(5) .reveal {
    transition-delay: .4s;
}

.row > *:nth-child(6) .reveal {
    transition-delay: .5s;
}

@media (max-width: 575px) {
    .reveal-left:not(.is-visible) {
        transform: translate3d(-36px, 0, 0);
    }

    .reveal-right:not(.is-visible) {
        transform: translate3d(36px, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal:not(.is-visible),
    .reveal-left:not(.is-visible),
    .reveal-right:not(.is-visible) {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

span#typed-text a {
    text-decoration: none;
    color: #fff;
}