
/* =========================================================
   STEINBAUER UK HOMEPAGE V2
   Upload to:
   /public_html/find-steinbauer-v2/public/assets/homepage-v2.css
   ========================================================= */

:root {
    --page-bg: #ffffff;
    --surface: #f3f3f3;
    --surface-dark: #151515;
    --surface-darker: #0d0d0d;
    --text: #161616;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --border: #dedede;
    --border-dark: rgba(255, 255, 255, 0.14);
    --accent: #d71920;
    --content-width: 1240px;
    --radius: 4px;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================
   HEADER
   ========================= */

.site-header {
    position: relative;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e4e4e4;
}

.topbar {
    background: #111111;
    color: #c8c8c8;
    font-size: 0.84rem;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar a {
    color: #ffffff;
    font-weight: 700;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-logo img {
    width: min(250px, 40vw);
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.94rem;
    font-weight: 700;
}

.primary-nav a {
    position: relative;
    padding: 30px 0;
    color: #222222;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 20px;
    height: 2px;
    background: var(--accent);
    transition: right 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
    right: 0;
}

.primary-nav .nav-shop {
    padding: 11px 18px;
    background: #111111;
    color: #ffffff;
}

.primary-nav .nav-shop::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 40px;
    padding: 8px;
    border: 0;
    background: transparent;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #111111;
}

/* =========================
   HERO
   ========================= */

.home-hero {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        url('/assets/images/home-hero.jpg') center center / cover no-repeat;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.38));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-block: 90px;
}

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

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: #333333;
}

.hero-copy h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    line-height: 0.99;
    letter-spacing: -0.045em;
}

.hero-copy > p {
    max-width: 660px;
    margin: 26px 0 0;
    color: #dddddd;
    font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions,
.final-actions,
.dealer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid transparent;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

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

.button-primary {
    background: var(--accent);
    color: #ffffff;
}

.button-dark {
    background: #111111;
    color: #ffffff;
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;
}

.hero-search {
    max-width: 690px;
    margin-top: 34px;
}

.hero-search label {
    display: block;
    margin-bottom: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4d4d4;
}

.hero-search-row {
    display: grid;
    grid-template-columns: 1fr auto;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-search input {
    min-width: 0;
    height: 58px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    color: #151515;
}

.hero-search button {
    min-width: 130px;
    border: 0;
    background: #111111;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

/* =========================
   CARBON-FIBRE BENEFITS STRIP
   ========================= */

.proof-strip {
    position: relative;
    overflow: hidden;
    background-color: #151515;
    background-image:
        linear-gradient(
            27deg,
            rgba(255, 255, 255, 0.035) 5px,
            transparent 5px
        ),
        linear-gradient(
            207deg,
            rgba(255, 255, 255, 0.035) 5px,
            transparent 5px
        ),
        linear-gradient(
            27deg,
            rgba(0, 0, 0, 0.24) 5px,
            transparent 5px
        ),
        linear-gradient(
            207deg,
            rgba(0, 0, 0, 0.24) 5px,
            transparent 5px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 50%,
            rgba(0, 0, 0, 0.08) 50%
        );
    background-position:
        0 0,
        10px 10px,
        10px 0,
        0 10px,
        0 0;
    background-size:
        20px 20px,
        20px 20px,
        20px 20px,
        20px 20px,
        4px 4px;
    border-top: 1px solid #767676;
    border-bottom: 1px solid #292929;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8);
}

.proof-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.045),
        transparent 42%,
        rgba(0, 0, 0, 0.18)
    );
    pointer-events: none;
}

.proof-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article {
    min-height: 150px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid article:last-child {
    border-right: 0;
}

.proof-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.2;
    font-weight: 800;
}

.proof-grid span {
    display: block;
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.45;
}

/* =========================
   GENERAL SECTIONS
   ========================= */

.section {
    padding-block: 94px;
}

.section-light {
    background: #ffffff;
}

.section-grey {
    background: #f2f2f2;
}

.section-dark {
    background: #101010;
    color: #ffffff;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 44px;
}

.section-heading h2,
.split-layout h2,
.uk-support h2,
.dealer-panel h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.section-heading p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #666666;
    font-size: 1.08rem;
}

/* =========================
   CATEGORY CARDS
   ========================= */

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

.category-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e8;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.035);
}

.category-content {
    position: relative;
    min-height: 230px;
    padding: 30px;
}

.category-number {
    display: block;
    margin-bottom: 18px;
    color: #8a8a8a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.category-content h3 {
    margin: 0;
    font-size: 1.65rem;
}

.category-content p {
    margin: 14px 0 25px;
    color: #666666;
}

.text-link {
    display: inline-block;
    font-weight: 800;
}

.text-link.light {
    color: #ffffff;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

/* =========================
   TECHNOLOGY SECTION
   ========================= */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.content-copy {
    color: #c4c4c4;
    font-size: 1.08rem;
}

.content-copy p {
    margin: 0 0 22px;
}

/* =========================
   SERVICES
   ========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    min-height: 315px;
    padding: 30px;
    border: 1px solid var(--border);
    background: #ffffff;
}

.service-card > span {
    color: #747474;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 20px 0 14px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666666;
}

.service-card a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 800;
}

/* =========================
   UK SUPPORT
   ========================= */

.uk-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.support-points {
    display: grid;
    gap: 20px;
}

.support-points div {
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
}

.support-points strong,
.support-points span {
    display: block;
}

.support-points strong {
    margin-bottom: 6px;
    font-size: 1.12rem;
}

.support-points span {
    color: #666666;
}

/* =========================
   DEALER PANEL
   ========================= */

.dealer-section {
    background: #111111;
    color: #ffffff;
}

.dealer-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.dealer-panel p {
    max-width: 680px;
    margin: 18px 0 0;
    color: #bcbcbc;
}

.dealer-actions {
    margin-top: 0;
    justify-content: flex-end;
}

/* =========================
   FINAL CTA
   ========================= */

.final-cta {
    background: #ffffff;
}

.final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.final-actions {
    margin-top: 0;
    justify-content: flex-end;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding-top: 70px;
    background: #0e0e0e;
    color: #b7b7b7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 58px;
}

.footer-logo img {
    max-width: 230px;
    filter: grayscale(1) brightness(2);
}

.footer-grid h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1rem;
}

.footer-grid a {
    display: block;
    margin: 10px 0;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
    .primary-nav {
        gap: 16px;
        font-size: 0.88rem;
    }

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

    .dealer-panel,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .dealer-actions,
    .final-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border-top: 1px solid #e4e4e4;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 14px 4px;
    }

    .primary-nav a::after {
        display: none;
    }

    .primary-nav .nav-shop {
        margin-top: 8px;
        text-align: center;
    }

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

    .proof-grid article:nth-child(2) {
        border-right: 0;
    }

    .proof-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

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

    .split-layout,
    .uk-support {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

@media (max-width: 620px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--content-width));
    }

    .topbar-inner {
        min-height: 42px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        padding-block: 7px;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-logo img {
        width: 205px;
    }

    .home-hero {
        min-height: 570px;
        background-position: 63% center;
    }

    .hero-inner {
        padding-block: 70px;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .hero-search-row {
        grid-template-columns: 1fr;
    }

    .hero-search button {
        min-height: 52px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid article {
        min-height: 120px;
        padding: 26px 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .proof-grid article:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 68px;
    }

    .category-grid,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-content {
        min-height: auto;
    }

    .footer-bottom {
        padding-block: 20px;
        align-items: flex-start;
        flex-direction: column;
    }
}
