:root {
    --brand: #D04F45;
    --brand-dark: #a63f38;
    --brand-soft: #f9e1dc;
    --ink: #131314;
    --ink-soft: #333333;
    --steel: #556168;
    --line: #dcd8d5;
    --paper: #fffdfb;
    --mist: #f7f1ee;
    --sage: var(--brand);
    --cobalt: #7a2f29;
    --copper: #8f3d35;
    --slate: #535b62;
    --sun: #f4b8aa;
    --sun-deep: #d18276;
    --leaf: #3b9f66;
    --shadow: 0 22px 55px rgba(19, 18, 17, .11);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--mist);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Poppins', 'Inter', Arial, Helvetica, sans-serif;
}

p,
span,
div,
label,
small,
button,
input,
textarea,
select,
.navbar .nav-link,
.utility-links a,
.mega-links a,
.dropdown-item,
.footer-links a {
    font-family: 'Poppins', 'Inter', Arial, Helvetica, sans-serif;
}

.section-kicker,
.footer-links h3,
.feature-card span,
.fact-item span {
    font-family: Georgia, 'Times New Roman', serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .22s ease, transform .22s ease;
}

a:hover {
    color: var(--sage);
    transform: translateY(-1px);
}

img {
    max-width: 100%;
}

.skip-link {
    background: var(--paper);
    color: var(--ink);
    padding: .75rem 1rem;
    position: absolute;
    z-index: 2000;
}

.site-header {
    box-shadow: 0 8px 20px rgba(24, 33, 36, .08);
}

.utility-bar {
    background: var(--ink);
    color: #dbe5e2;
    font-size: .82rem;
    padding: .45rem 0;
}

.utility-links {
    gap: 1.25rem;
}

.utility-links a {
    color: #dbe5e2;
}

.main-nav {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-width: max-content;
}

.brand-mark img.brand-logo {
    display: block;
    /* width: 68px; */
    height: 60px;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .brand-mark img.brand-logo {
        width: 150px;
        height: 50px;
        border-radius: 12px;
    }
}

.navbar-brand .brand-logo,
.footer-brand .brand-logo {
    background: #fff;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .navbar-brand .brand-logo {
        /* width: 80px; */
        height: 80px;
    }

    .footer-brand .brand-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand .brand-logo {
        width: 60px;
        height: 60px;
    }

    .footer-brand .brand-logo {
        width: 50px;
        height: 50px;
    }
}

.brand-symbol {
    align-items: center;
    background: var(--brand-soft);
    border-radius: var(--radius);
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.brand-mark strong,
.brand-mark small {
    display: block;
    line-height: 1.05;
}

.brand-mark small {
    color: var(--steel);
    font-size: .75rem;
    margin-top: .2rem;
}

.navbar .nav-link {
    color: var(--ink);
    font-weight: 700;
    font-size: 1.05rem;
    font-family: 'Playfair Display', 'Poppins', 'Inter', sans-serif;
    letter-spacing: .03em;
    transition: color .22s ease, transform .22s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--brand);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.mega-menu {
    border-top: 1px solid var(--line);
    left: 0;
    padding: 1.75rem 0;
    right: 0;
}

.mega-heading {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-weight: 800;
    gap: .6rem;
    margin-bottom: .65rem;
    font-size: 1.1rem;
    font-family: 'Playfair Display', 'Poppins', 'Inter', sans-serif;
}

.mega-heading i {
    color: var(--sage);
}

.mega-links {
    display: grid;
    gap: .35rem;
}

.mega-links a,
.dropdown-item {
    color: var(--steel);
    font-size: .93rem;
}

.header-search {
    align-items: center;
    display: flex;
    gap: .75rem;
    min-width: 200px;
}

.header-search .form-control {
    max-width: 220px;
    padding: .75rem .85rem;
    font-size: .95rem;
}

.header-search .btn {
    min-width: 54px;
    min-height: 48px;
    padding: 0.75rem 1rem;
}

.header-search .form-control,
.newsletter-form .form-control,
.wide-search .form-control,
.locator-form .form-control,
.form-control,
.form-select,
textarea {
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: #fff;
    color: var(--ink);
    padding: .95rem 1rem;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
    min-width: 0;
}

.header-search .form-control:focus,
.newsletter-form .form-control:focus,
.wide-search .form-control:focus,
.locator-form .form-control:focus,
.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(208, 79, 69, .12);
    outline: none;
}

.btn {
    border-radius: 1.05rem;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
    box-shadow: 0 16px 32px rgba(208, 79, 69, .16);
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--brand-dark) !important;
    border-color: var(--brand-dark) !important;
    box-shadow: 0 14px 30px rgba(166, 63, 56, .22);
}

.section-pad {
    padding: 5rem 0;
}

.section-kicker {
    color: var(--copper);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: .55rem;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 2rem;
    max-width: 720px;
}

.section-heading h2,
.plain-hero h1,
.story-hero h1,
.category-hero h1,
.home-hero h1 {
    font-weight: 900;
    letter-spacing: 0;
}

.with-action {
    align-items: end;
    display: flex;
    justify-content: space-between;
    max-width: none;
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(24, 33, 36, .92), rgba(24, 33, 36, .58), rgba(24, 33, 36, .18)),
        var(--hero-bg) center / cover no-repeat,
        var(--ink);
    color: #fff;
    min-height: 620px;
    padding: 7rem 0 4rem;
}

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

.hero-copy h1 {
    font-size: 5rem;
    line-height: .95;
    margin-bottom: 1.25rem;
}

.hero-copy p {
    color: #d9e2df;
    font-size: 1.18rem;
    max-width: 590px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

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

.category-tile {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr 96px;
    min-height: 132px;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

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

.category-tile,
.product-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.tile-icon {
    align-items: center;
    background: #edf3f1;
    border-radius: var(--radius);
    color: var(--sage);
    display: inline-flex;
    font-size: 1.5rem;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.category-tile strong,
.category-tile small {
    display: block;
}

.category-tile small {
    color: var(--steel);
    margin-top: .2rem;
}

.category-tile img {
    aspect-ratio: 1;
    object-fit: contain;
    width: 96px;
}

.accent-cobalt .tile-icon,
.accent-cobalt .category-hero-copy span {
    background: #e7eef3;
    color: var(--cobalt);
}

.accent-sage .category-hero-copy span {
    background: #edf3f1;
    color: var(--sage);
}

.accent-copper .tile-icon,
.accent-copper .category-hero-copy span {
    background: #f4ece4;
    color: var(--copper);
}

.accent-slate .tile-icon,
.accent-slate .category-hero-copy span {
    background: #edf0f1;
    color: var(--slate);
}

.feature-band {
    background: var(--ink-soft);
    color: #fff;
    padding: 5rem 0;
}

.feature-band p {
    color: #d8e0de;
}

.mini-product-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-feature {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1.2fr;
    padding: 2rem;
}

.split-feature h2 {
    font-weight: 900;
}

.stat-strip {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-strip span {
    background: var(--mist);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.stat-strip strong {
    display: block;
    font-size: 2rem;
}

.surface-section {
    background: #fff;
}

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

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

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-width: 0;
    overflow: hidden;
}

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

.product-image {
    align-items: center;
    background: #f8faf9;
    display: flex;
    height: 235px;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-card-body {
    padding: 1rem;
}

.product-code {
    color: var(--copper);
    display: block;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: .4rem;
}

.product-card h3 {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    min-height: 2.5rem;
}

.product-category {
    color: var(--steel);
    font-size: .86rem;
}

.product-card-mini .product-image {
    height: 160px;
}

.product-card-mini h3 {
    font-size: .9rem;
}

.support-grid,
.feature-card-grid,
.fact-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-item,
.feature-card,
.fact-item,
.info-panel,
.locator-shell {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.support-item i {
    color: var(--sage);
    font-size: 1.8rem;
}

.support-item h3,
.feature-card h2,
.info-panel h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-top: .75rem;
}

.support-item p,
.feature-card p,
.info-panel p,
.muted-text {
    color: var(--steel);
}

.support-item a,
.feature-card a {
    color: var(--sage);
    font-weight: 900;
}

.breadcrumb-wrap {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: .85rem 0 .1rem;
}

.breadcrumb {
    font-size: .9rem;
}

.breadcrumb a {
    color: var(--steel);
}

.category-hero {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.category-hero .container-xl {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: 320px;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.category-hero-copy p {
    color: var(--steel);
    max-width: 660px;
}

.category-hero-copy span {
    border-radius: var(--radius);
    display: inline-flex;
    font-size: .88rem;
    font-weight: 900;
    padding: .45rem .75rem;
}

.category-hero img {
    max-height: 300px;
    object-fit: contain;
    width: 100%;
}

.catalog-layout {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 290px minmax(0, 1fr);
}

.filter-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
    position: sticky;
    top: 116px;
}

.filter-header,
.results-toolbar {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.filter-header h2,
.results-toolbar h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin: 0;
}

.toolbar-controls {
    min-width: 220px;
}

.empty-state {
    background: var(--paper);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
}

.pagination-wrap {
    margin-top: 2rem;
}

.pagination .page-link {
    border-color: var(--line);
    color: var(--ink);
}

.pagination .active .page-link {
    background: var(--sage);
    border-color: var(--sage);
}

.product-detail {
    background: var(--paper);
    padding: 4rem 0;
}

.product-gallery {
    align-items: center;
    background: #f8faf9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    min-height: 520px;
    justify-content: center;
    padding: 2rem;
}

.product-gallery img {
    max-height: 460px;
    object-fit: contain;
}

.gallery-thumbs {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(5, 1fr);
    margin-top: .75rem;
}

.gallery-thumbs button {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 88px;
    padding: .4rem;
}

.gallery-thumbs img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-summary {
    position: sticky;
    top: 128px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.product-summary .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    white-space: normal;
}

.product-summary h1 {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.feature-list,
.check-list {
    display: grid;
    gap: .65rem;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.feature-list li,
.check-list li {
    padding-left: 1.65rem;
    position: relative;
}

.feature-list li::before,
.check-list li::before {
    border-bottom: 2px solid var(--sage);
    border-right: 2px solid var(--sage);
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    top: .25rem;
    transform: rotate(45deg);
    width: 6px;
}

.spec-table-wrap {
    margin-top: 3rem;
    overflow-x: auto;
}

.spec-table {
    background: #fff;
    border: 1px solid var(--line);
    min-width: 100%;
}

.spec-table th {
    color: var(--steel);
    width: 38%;
    word-break: break-word;
}

.spec-table td {
    word-break: break-word;
    overflow-wrap: break-word;
}

.plain-hero,
.story-hero {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 4rem 0;
}

.plain-hero p,
.story-hero p {
    color: var(--steel);
    max-width: 760px;
}

.wide-search,
.locator-form,
.newsletter-form {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem;
    max-width: 720px;
}

.feature-card span {
    background: var(--sage);
    border-radius: var(--radius);
    display: block;
    height: 8px;
    width: 64px;
}

.source-note {
    border-top: 1px solid var(--line);
    color: var(--steel);
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 2rem;
    padding-top: 1rem;
}

.source-note a {
    color: var(--sage);
    overflow-wrap: anywhere;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    background: var(--paper);
    border-left: 4px solid var(--sage);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.timeline-item strong {
    color: var(--copper);
}

.locator-shell .nav-pills {
    gap: .5rem;
}

.locator-shell .nav-link {
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 900;
}

.locator-shell .nav-link.active {
    background: var(--sage);
}

.locator-shell .tab-content {
    padding-top: 1.5rem;
}

.fact-item span,
.fact-item strong {
    display: block;
}

.fact-item span {
    color: var(--copper);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.fact-item strong {
    font-size: 1.2rem;
    margin-top: .5rem;
}

.site-footer {
    background: var(--ink);
    color: #d8e1df;
    padding: 4rem 0 1.5rem;
}

.footer-cta {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.footer-cta h2 {
    color: #fff;
    font-weight: 900;
    margin: 0;
}

.footer-links h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
}

.footer-links a {
    color: #d8e1df;
    display: block;
    margin: .35rem 0;
}

.footer-brand {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links p {
    color: #b9c5c3;
    max-width: 420px;
}

.social-links {
    display: flex;
    gap: .75rem;
}

.social-links a {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: #aebbb8;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1rem;
}

@media (max-width: 1199.98px) {
    .product-grid,
    .product-grid.compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 991.98px) {
    .header-search {
        margin-top: 1rem;
        width: 100%;
    }

    .mega-menu {
        padding: 1rem;
    }

    .home-hero {
        background:
            linear-gradient(90deg, rgba(24, 33, 36, .94), rgba(24, 33, 36, .72)),
            var(--hero-image) right bottom / 70% auto no-repeat,
            var(--ink);
        min-height: 560px;
    }

    .category-hero .container-xl,
    .catalog-layout,
    .split-feature {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .product-summary {
        position: static;
    }

    .support-grid,
    .feature-card-grid,
    .fact-grid,
    .mini-product-row,
    .stat-strip {
        grid-template-columns: 1fr;
    }

    .footer-cta,
    .with-action {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    .home-hero {
        padding: 5rem 0 3rem;
    }

    .hero-copy h1 {
        font-size: 2.65rem;
    }

    .product-grid,
    .product-grid.compact,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 220px;
    }

    .wide-search,
    .locator-form,
    .newsletter-form {
        flex-direction: column;
    }

    .category-tile {
        grid-template-columns: auto 1fr;
    }

    .category-tile img {
        display: none;
    }

    .product-gallery {
        min-height: 340px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}

body {
    background:
        linear-gradient(180deg, #f7f9fb 0, var(--mist) 38%, #eef3f5 100%);
}

.site-header {
    box-shadow: 0 10px 28px rgba(21, 26, 29, .11);
}

.utility-bar {
    background: #101518;
    color: #f3f6f8;
}

.utility-links a:hover {
    color: var(--sun);
}

.main-nav {
    background: rgba(255, 254, 248, .96);
    border-bottom: 1px solid rgba(220, 216, 213, .8);
}

.brand-symbol {
    background: var(--brand-soft);
    color: var(--brand-dark);
    box-shadow: inset 0 -5px 0 rgba(19, 18, 17, .08);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.mega-heading:hover,
.dropdown-item:hover {
    color: var(--brand-dark);
}

.mega-heading i,
.support-item i,
.admin-stat i {
    color: var(--brand);
}

.section-kicker,
.fact-item span {
    color: var(--brand-dark);
    letter-spacing: 0;
}

.home-hero .section-kicker,
.category-hero .section-kicker,
.product-summary .section-kicker,
.feature-band .section-kicker {
    color: var(--brand);
}

.btn-accent {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-hover-color: #fff;
    box-shadow: 0 12px 24px rgba(208, 79, 69, .18);
}

.btn-outline-light:hover {
    color: var(--ink);
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(10, 16, 19, .92), rgba(18, 29, 34, .7), rgba(8, 63, 77, .32)),
        var(--hero-bg) center / cover no-repeat,
        #11171a;
    color: #fff;
    min-height: 650px;
    overflow: hidden;
    padding: 6.5rem 0 4.5rem;
    position: relative;
}

.home-hero::before {
    background: repeating-linear-gradient(135deg, rgb(208 79 69) 0 14px, transparent 14px 31px);
    bottom: -18%;
    content: "";
    height: 55%;
    opacity: .42;
    position: absolute;
    right: -12%;
    transform: rotate(-5deg);
    width: 72%;
}

.home-hero .container-xl {
    align-items: center;
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: 5rem;
    line-height: .96;
}

.hero-copy p {
    color: #e7eef0;
}

.hero-actions .btn {
    min-height: 48px;
}

.hero-media {
    align-items: center;
    display: grid;
    min-height: 440px;
    place-items: center;
    position: relative;
}

.hero-media::before {
    background: linear-gradient(145deg, rgba(255, 215, 71, .9), rgba(11, 138, 160, .72));
    content: "";
    height: 82%;
    position: absolute;
    transform: rotate(-4deg);
    width: 86%;
}

.hero-media img {
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
    max-height: 420px;
    object-fit: cover;
    position: relative;
    width: min(100%, 520px);
}

.hero-chip {
    background: rgba(255, 254, 248, .94);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: var(--radius);
    color: var(--ink);
    font-size: .82rem;
    font-weight: 900;
    padding: .55rem .7rem;
    position: absolute;
    z-index: 2;
}

.hero-chip-top {
    right: 8%;
    top: 12%;
}

.hero-chip-bottom {
    bottom: 13%;
    left: 5%;
}

.jobsite-strip {
    background: var(--ink);
    color: #edf4f6;
    padding: 1.15rem 0;
}

.jobsite-strip-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jobsite-strip-grid span {
    align-items: center;
    display: grid;
    gap: .15rem .75rem;
    grid-template-columns: auto minmax(0, 1fr);
}

.jobsite-strip-grid i {
    color: var(--sun);
    font-size: 1.45rem;
    grid-row: span 2;
}

.jobsite-strip-grid strong,
.jobsite-strip-grid small {
    display: block;
}

.jobsite-strip-grid small {
    color: #bfd0d5;
    line-height: 1.35;
}

.category-tile,
.product-card,
.support-item,
.feature-card,
.fact-item,
.info-panel,
.locator-shell,
.split-feature,
.filter-panel,
.empty-state,
.product-gallery,
.spec-table {
    background: var(--paper);
    border-color: var(--line);
}

.category-tile {
    grid-template-columns: auto 1fr 104px;
    isolation: isolate;
}

.category-tile-featured {
    background:
        linear-gradient(90deg, rgba(21, 26, 29, .88), rgba(21, 26, 29, .5)),
        url("../img/lifestyle/hand-tools-workbench.jpg") center / cover no-repeat;
    color: #fff;
    grid-column: span 2;
    min-height: 190px;
}

.category-tile-featured small {
    color: #e5edf0;
}

.category-tile-featured img {
    display: none;
}

.category-tile-featured .tile-icon {
    background: var(--sun);
    color: var(--ink);
}

.category-tile::before {
    background: linear-gradient(90deg, var(--sun), var(--sage));
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.category-tile:hover {
    box-shadow: var(--shadow);
    color: var(--ink);
    transform: translateY(-4px);
}

.tile-icon {
    background: #eef8fb;
    color: var(--cobalt);
}

.tile-arrow {
    align-items: center;
    background: var(--ink);
    border-radius: var(--radius);
    bottom: 1rem;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 1rem;
    transform: translateX(-6px);
    transition: opacity .18s ease, transform .18s ease;
    width: 34px;
}

.category-tile:hover .tile-arrow {
    opacity: 1;
    transform: translateX(0);
}

.task-section {
    background: #eef4f6;
}

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

.task-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: .65rem;
    min-height: 190px;
    padding: 1.35rem;
    transition: box-shadow .18s ease, transform .18s ease;
}

.task-card:hover {
    box-shadow: var(--shadow);
    color: var(--ink);
    transform: translateY(-4px);
}

.task-card i {
    align-items: center;
    background: #e7f5f8;
    border-radius: var(--radius);
    color: var(--cobalt);
    display: inline-flex;
    font-size: 1.45rem;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.task-card strong {
    font-size: 1.1rem;
    font-weight: 900;
}

.task-card span {
    color: var(--steel);
    line-height: 1.45;
}

.yellow-system-band {
    background: var(--sun);
    color: var(--ink);
    overflow: hidden;
    padding: 4rem 0;
    position: relative;
}

.yellow-system-band::before {
    background: repeating-linear-gradient(135deg, rgb(208 79 69 / 40%) 0 12px, transparent 12px 28px);
    bottom: -35%;
    content: "";
    height: 90%;
    position: absolute;
    right: -8%;
    transform: rotate(-6deg);
    width: 55%;
}

.yellow-system-band .container-xl {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    position: relative;
    z-index: 1;
}

.yellow-system-band .section-kicker {
    color: #6a3c00;
}

.yellow-system-copy h2 {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.05;
}

.yellow-system-copy p {
    max-width: 620px;
}

.yellow-system-images {
    display: grid;
    gap: .85rem;
    grid-template-columns: 1.2fr .8fr;
}

.yellow-system-images img {
    aspect-ratio: 4 / 3;
    border: 3px solid rgba(21, 26, 29, .14);
    border-radius: var(--radius);
    box-shadow: 0 20px 38px rgba(21, 26, 29, .18);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.yellow-system-images img:first-child {
    grid-row: span 2;
}

.feature-band {
    background:
        linear-gradient(135deg, var(--ink-soft), #0a3d4b);
    overflow: hidden;
    position: relative;
}

.feature-band::after {
    background: repeating-linear-gradient(55deg, rgb(208 79 69 / 70%) 0 12px, transparent 71px 71px);
    content: "";
    inset: auto 0 0;
    height: 15px;
    position: absolute;
}

.feature-band-copy h2,
.split-feature h2,
.section-heading h2,
.plain-hero h1,
.story-hero h1,
.category-hero h1 {
    color: var(--ink);
}

.feature-band-copy h2 {
    color: #fff;
    font-size: 2.8rem;
    line-height: 1;
}

.mini-product-row .product-card {
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.split-feature {
    background:
        linear-gradient(120deg, var(--paper), #f8fbfc);
    box-shadow: 0 18px 40px rgba(21, 26, 29, .07);
}

.real-work-section {
    background: #fffef8;
}

.real-work-layout {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.real-work-photo {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.real-work-photo::after {
    background: linear-gradient(90deg, var(--sun), var(--cobalt));
    bottom: 0;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
}

.real-work-photo img {
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    width: 100%;
}

.real-work-copy h2 {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.05;
}

.real-work-copy p {
    color: var(--steel);
}

.real-work-points {
    display: grid;
    gap: .7rem;
    margin-top: 1.25rem;
}

.real-work-points span {
    align-items: center;
    display: flex;
    gap: .65rem;
}

.real-work-points i {
    color: var(--cobalt);
}

.stat-strip span {
    background: #eef8fb;
    border: 1px solid #d4ebf0;
}

.stat-strip strong {
    color: var(--cobalt);
}

.surface-section {
    background: #fffef8;
}

.catalog-section {
    background:
        linear-gradient(180deg, #eef4f6 0, #f7f9fb 42%, #fffef8 100%);
}

.catalog-intro-panel {
    align-items: center;
    background:
        linear-gradient(120deg, var(--ink), #0a3d4b);
    border-radius: var(--radius);
    color: #fff;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr) 280px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    position: relative;
}

.catalog-intro-panel::after {
    background: var(--sun);
    bottom: 0;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    right: 0;
}

.catalog-intro-panel .section-kicker {
    color: var(--sun);
}

.catalog-intro-panel h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: .45rem;
}

.catalog-intro-panel p {
    color: #dce9ed;
    margin: 0;
    max-width: 680px;
}

.catalog-intro-panel img {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.catalog-layout {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: 320px minmax(0, 1fr);
    width: 100%;
}

.catalog-filter-panel {
    background:
        linear-gradient(180deg, #fffef8, #f5fafb);
    box-shadow: 0 18px 38px rgba(21, 26, 29, .09);
    overflow: hidden;
    padding: 0 1.25rem 1.25rem;
    display: grid;
    gap: 1rem;
}

.catalog-filter-panel::before {
    background: linear-gradient(90deg, var(--sun), var(--cobalt));
    content: "";
    display: block;
    height: 6px;
}

.catalog-filter-panel > .filter-header {
    margin-top: 1.2rem;
}

.filter-kicker {
    color: var(--copper);
    display: block;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.filter-stat {
    align-items: center;
    background: #e9f5f7;
    border: 1px solid #d2e8ee;
    border-radius: var(--radius);
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem;
    margin-top: 1.2rem;
    padding: .9rem;
}

.filter-stat i {
    align-items: center;
    background: var(--cobalt);
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
}

.filter-stat span,
.filter-stat strong {
    display: block;
}

.filter-stat span {
    color: var(--steel);
    font-size: .92rem;
    line-height: 1.3;
}

.filter-stat strong {
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 900;
}

.filter-input-wrap {
    position: relative;
}

.filter-input-wrap i {
    color: var(--steel);
    left: .85rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.filter-input-wrap .form-control {
    padding-left: 2.4rem;
}

.filter-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.filter-chip-cloud a {
    background: #eef4f6;
    border: 1px solid #d8e6eb;
    border-radius: var(--radius);
    color: var(--ink);
    font-size: .82rem;
    font-weight: 800;
    padding: .45rem .6rem;
}

.filter-chip-cloud a.active,
.filter-chip-cloud a:hover {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--ink);
}

.catalog-filter-panel .btn {
    margin-bottom: 1.25rem;
}

.catalog-results {
    min-width: 0;
}

.catalog-results .results-toolbar {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 26px rgba(21, 26, 29, .06);
    margin-bottom: 1rem;
    padding: 1rem;
}

.catalog-view-tools {
    align-items: end;
    display: flex;
    gap: .85rem;
}

.result-pill {
    align-items: center;
    background: #eef8fb;
    border: 1px solid #d4ebf0;
    border-radius: var(--radius);
    color: var(--cobalt);
    display: inline-flex;
    font-weight: 900;
    gap: .45rem;
    min-height: 38px;
    padding: .45rem .7rem;
}

.catalog-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.carousel-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.carousel-actions > a {
    color: var(--cobalt);
    font-weight: 900;
}

.carousel-controls {
    display: flex;
    gap: .5rem;
}

.carousel-btn {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    color: #fff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
    width: 42px;
}

.carousel-btn:hover,
.carousel-btn:focus {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--ink);
}

.carousel-btn:disabled {
    cursor: not-allowed;
    opacity: .35;
}

.product-carousel {
    display: grid;
    gap: 1rem;
    grid-auto-columns: calc((100% - 3rem) / 4);
    grid-auto-flow: column;
    overflow-x: auto;
    overflow-y: hidden;
    padding: .25rem .1rem 1.1rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--sun) #e7edf0;
}

.carousel-slide {
    min-width: 0;
    scroll-snap-align: start;
}

.carousel-slide .product-card {
    height: 100%;
}

.product-card {
    box-shadow: 0 10px 24px rgba(21, 26, 29, .06);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    background:
        linear-gradient(145deg, #f9fbfc 0, #eef4f6 100%);
    overflow: hidden;
    position: relative;
}

.product-image::after {
    background: linear-gradient(90deg, var(--sun), var(--sage));
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
}

.product-image img {
    height: 100%;
    max-height: none;
    object-fit: cover;
    transition: transform .24s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-code {
    color: var(--copper);
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-card-body p {
    color: var(--steel);
    font-size: .9rem;
    line-height: 1.45;
    margin: .3rem 0 .85rem;
}

.product-category,
.support-item a,
.feature-card a,
.source-note a {
    color: var(--cobalt);
}

.product-card-link {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    font-size: .88rem;
    font-weight: 900;
    gap: .35rem;
    margin-top: auto;
    padding-top: .9rem;
}

.product-card-link:hover {
    color: var(--cobalt);
}

.product-card-mini .product-card-link,
.product-card-mini .product-card-body p {
    display: none;
}

.support-item,
.feature-card,
.fact-item,
.info-panel {
    box-shadow: 0 12px 28px rgba(21, 26, 29, .06);
}

.support-item:hover,
.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.support-item,
.feature-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.breadcrumb-wrap,
.plain-hero,
.story-hero,
.category-hero {
    background: #fffef8;
}

.category-hero,
.product-detail {
    background:
        linear-gradient(90deg, rgba(10, 16, 19, .9), rgba(18, 29, 34, .7), rgba(8, 63, 77, .38)),
        var(--scene-image) center / cover no-repeat,
        #11171a;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.category-hero .container-xl {
    min-height: 360px;
    position: relative;
    z-index: 1;
}

.category-hero h1,
.category-hero-copy p {
    color: #fff;
}

.category-hero-copy p:not(.section-kicker) {
    color: #e0ebee;
}

.category-hero img {
    filter: drop-shadow(0 22px 28px rgba(21, 26, 29, .16));
}

.product-detail {
    padding: 4.75rem 0;
}

.product-detail .container-xl {
    position: relative;
    z-index: 1;
}

.product-summary h1,
.product-summary,
.product-summary .product-category {
    color: #fff;
}

.product-summary .feature-list {
    color: #edf4f6;
}

.filter-panel {
    box-shadow: 0 18px 38px rgba(21, 26, 29, .07);
}

.pagination .active .page-link,
.locator-shell .nav-link.active {
    background: var(--cobalt);
    border-color: var(--cobalt);
}

.product-gallery {
    background:
        linear-gradient(145deg, #f9fbfc, #edf4f6);
}

.gallery-thumbs button.is-active {
    border-color: var(--cobalt);
    box-shadow: 0 0 0 3px rgba(11, 138, 160, .14);
}

.product-summary h1 {
    font-size: 3.6rem;
}

.feature-list li::before,
.check-list li::before {
    border-color: var(--cobalt);
}

.feature-card span {
    background: linear-gradient(90deg, var(--sun), var(--cobalt));
    border-radius: var(--radius);
}

.site-footer {
    background:
        linear-gradient(135deg, #101518 0, #172126 60%, #083f4d 100%);
}

.site-footer .brand-symbol {
    background: var(--sun);
}

.social-links a:hover {
    background: var(--sun);
    color: var(--ink);
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .58s ease, transform .58s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.hero-media img {
    animation: heroFloat 5.5s ease-in-out infinite;
}

@media (max-width: 1199.98px) {
    .hero-copy h1 {
        font-size: 4.1rem;
    }

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

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

    .product-carousel {
        grid-auto-columns: calc((100% - 2rem) / 3);
    }
}

@media (max-width: 991.98px) {
    .home-hero {
        min-height: auto;
        padding: 5rem 0 3.5rem;
    }

    .home-hero .container-xl {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 3.5rem;
    }

    .hero-media {
        min-height: 330px;
    }

    .hero-media img {
        max-height: 320px;
    }

    .feature-band-copy h2 {
        font-size: 2.35rem;
    }

    .jobsite-strip-grid,
    .real-work-layout,
    .yellow-system-band .container-xl,
    .catalog-intro-panel,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .yellow-system-copy h2 {
        font-size: 2.25rem;
    }

    .catalog-intro-panel img {
        max-height: 260px;
    }

    .catalog-filter-panel {
        position: static;
    }

    .product-carousel {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }

    .carousel-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hero-copy h1 {
        font-size: 2.7rem;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-media {
        min-height: 260px;
    }

    .hero-media::before {
        height: 68%;
        width: 88%;
    }

    .hero-media img {
        max-height: 250px;
    }

    .hero-chip {
        display: none;
    }

    .category-tile {
        grid-template-columns: auto 1fr 84px;
    }

    .category-tile-featured {
        grid-column: span 1;
        min-height: 170px;
    }

    .category-tile img {
        display: block;
        width: 84px;
    }

    .category-tile-featured img {
        display: none;
    }

    .tile-arrow {
        display: none;
    }

    .product-carousel {
        grid-auto-columns: 82%;
    }

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

    .task-card {
        min-height: 150px;
    }

    .yellow-system-images {
        grid-template-columns: 1fr;
    }

    .yellow-system-images img:first-child {
        grid-row: span 1;
    }

    .catalog-view-tools,
    .catalog-results .results-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-results .product-grid {
        grid-template-columns: 1fr;
    }

    .real-work-copy h2 {
        font-size: 2.1rem;
    }

    .product-summary h1 {
        font-size: 2.35rem;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding-top: 4rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .category-tile {
        grid-template-columns: auto 1fr;
    }

    .category-tile img {
        display: none;
    }

    .product-carousel {
        grid-auto-columns: 88%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
    }
}

.admin-body {
    background: #eef2f1;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--ink);
    color: #d8e1df;
    padding: 1.5rem;
}

.admin-brand {
    color: #fff;
    margin-bottom: 2rem;
}

.admin-sidebar nav {
    display: grid;
    gap: .35rem;
}

.admin-sidebar nav a {
    align-items: center;
    border-radius: var(--radius);
    color: #d8e1df;
    display: flex;
    font-weight: 800;
    gap: .7rem;
    padding: .8rem .9rem;
}

.admin-sidebar nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.admin-main {
    padding: 2rem;
}

.admin-main-centered {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(24, 33, 36, .06);
    padding: 1.5rem;
}

.login-card,
.setup-card {
    max-width: 560px;
    width: 100%;
}

.login-card h1,
.setup-card h1,
.admin-header h1 {
    font-weight: 900;
}

.admin-help {
    color: var(--steel);
    font-size: .9rem;
    margin: 1rem 0 0;
    text-align: center;
}

.admin-header {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.admin-stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.admin-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.admin-stat i {
    color: var(--sage);
    font-size: 1.4rem;
}

.admin-stat span,
.admin-stat strong {
    display: block;
}

.admin-stat span {
    color: var(--steel);
    margin-top: .65rem;
}

.admin-stat strong {
    font-size: 2rem;
    font-weight: 900;
}

.admin-table small {
    color: var(--steel);
    display: block;
}

.admin-search {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    max-width: 640px;
}

.admin-form .form-label {
    font-weight: 800;
}

.admin-form-actions {
    border-top: 1px solid var(--line);
    display: flex;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
}

@media (max-width: 991.98px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

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

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

    .admin-header,
    .admin-search {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .admin-main {
        padding: 1rem;
    }

    .admin-sidebar nav,
    .admin-stat-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-actions {
        flex-direction: column;
    }
}
