/* Alliance Tools — design system: steel / precision / industrial */
:root {
    /* Token palette */
    --ink: #0f1419;
    --text-color: #2a3340;
    --text-muted: #5c6878;
    --color-canvas: #e2e6ed;
    --color-paper: #f4f1eb;
    --color-brand: #1a3a52;
    --color-brand-mid: #122a3d;
    --color-brand-deep: #0a1a25;
    --color-accent: #c45d1a;
    --color-accent-bright: #e8742e;
    --color-steel: #2a6f8a;
    --line-soft: rgba(10, 26, 37, 0.08);
    --color-accent-soft: rgba(196, 93, 26, 0.1);
    /* Backward compat with older templates */
    --sand-light: var(--color-canvas);
    --olive: var(--color-brand);
    --dark-green: var(--color-brand-mid);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Barlow", -apple-system, sans-serif;
    background-color: var(--color-canvas);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .section-label {
    font-family: "Sora", "Barlow", sans-serif;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.logo {
    color: var(--ink);
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    letter-spacing: 0.02em;
    text-transform: none;
    transition: color 0.2s ease;
    line-height: 1.2;
}

.logo__accent {
    color: var(--color-steel);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-top-bar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 0 var(--line-soft), 0 6px 28px rgba(7, 16, 24, 0.1);
}

.site-top-header {
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    padding: 0.5rem 0 0.65rem;
}

/* Header: one grid — mobile = burger + logo + cart, then full-width search */
.site-header-grid {
    display: grid;
    align-items: center;
    grid-template-areas: "burger logo cart" "search search search";
    grid-template-columns: auto 1fr auto;
    gap: 0.4rem 0.75rem;
    row-gap: 0.5rem;
}

.main-menu-burger {
    grid-area: burger;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--line-soft);
    background: linear-gradient(145deg, #fff 0%, #f0f2f5 100%);
    border-radius: 0.45rem;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.2s;
}

.main-menu-burger:hover {
    box-shadow: 0 2px 8px rgba(26, 58, 82, 0.12);
    transform: translateY(-1px);
}

.main-menu-burger[aria-expanded="true"] {
    background: var(--color-brand);
    color: #fff;
    border-color: var(--color-brand);
}

.main-menu-burger__lines {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 1.15rem;
    height: 0.8rem;
    position: relative;
    gap: 0.2rem;
}
.main-menu-burger__bar {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s;
}
.main-menu-burger[aria-expanded="true"] .main-menu-burger__bar:nth-child(1) { transform: translateY(0.3rem) rotate(45deg); }
.main-menu-burger[aria-expanded="true"] .main-menu-burger__bar:nth-child(2) { opacity: 0; transform: scale(0.5); }
.main-menu-burger[aria-expanded="true"] .main-menu-burger__bar:nth-child(3) { transform: translateY(-0.3rem) rotate(-45deg); }

.site-header-grid__logo {
    grid-area: logo;
    min-width: 0;
    text-align: center;
    justify-self: center;
    max-width: 100%;
}

.search-form {
    --sf-radius: 999px;
    position: relative;
    grid-area: search;
}
.search-form .form-control {
    border-radius: var(--sf-radius) 0 0 var(--sf-radius);
    border: 1px solid var(--line-soft);
    background: #f5f6f8;
    padding: 0.4rem 1rem;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.search-form .form-control:focus {
    background: #fff;
    border-color: rgba(42, 111, 138, 0.4);
    box-shadow: 0 0 0 3px rgba(42, 111, 138, 0.12);
}
.search-form .input-group { flex-wrap: nowrap; }
.search-form .btn {
    border-radius: 0 var(--sf-radius) var(--sf-radius) 0;
    padding: 0.4rem 1.1rem;
    font-size: 0.9rem;
}

@media (min-width: 992px) {
    .site-header-grid {
        grid-template-areas: "logo search cart";
        grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.1fr) auto;
        column-gap: 1.25rem;
        row-gap: 0;
        padding: 0.2rem 0 0.15rem;
        align-items: center;
    }
    .main-menu-burger { display: none; }
    .site-header-grid__logo { justify-self: start; text-align: left; }
    .site-header-grid__cart { justify-self: end; }
}

/* Cart / Snipcart */
.cart-wrapper { display: flex; align-items: center; }
.site-header-grid__cart { grid-area: cart; }
.snipcart-checkout.cart-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 2.45rem;
    padding: 0.35rem 0.8rem 0.35rem 0.7rem;
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    color: var(--color-brand);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.15s;
}
.snipcart-checkout.cart-checkout-btn:hover {
    color: #fff;
    background: var(--color-steel);
    border-color: var(--color-steel);
    box-shadow: 0 2px 10px rgba(42, 111, 138, 0.3);
    transform: translateY(-1px);
}
.snipcart-checkout .cart-item-count,
.snipcart-items-count.cart-item-count {
    font-size: 0.88rem;
    font-weight: 800;
    min-width: 0.5em;
    font-variant-numeric: tabular-nums;
}

/* Compact primary rail nav — "segment" style */
.main-navbar--rail {
    --nav-h: 2.2rem;
    position: relative;
    border-top: none;
    background: linear-gradient(90deg, var(--color-brand-deep) 0%, var(--color-brand) 50%, #1e4a6b 100%) !important;
    background-color: var(--color-brand) !important;
    padding: 0;
}
.main-navbar--rail::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 93, 26, 0.55) 20%, rgba(199, 93, 26, 0.55) 80%, transparent);
    pointer-events: none;
    opacity: 0.85;
}
.main-navbar__inner {
    padding: 0 !important;
}
@media (min-width: 992px) {
    .main-navbar--rail .main-navbar__inner {
        max-width: 1320px;
    }
}

.main-navbar--rail .main-navbar-nav {
    flex-wrap: nowrap;
}
@media (min-width: 992px) {
    .main-navbar--rail .main-navbar-nav { width: 100% !important; }
    .main-navbar--rail .main-navbar-nav .nav-item {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        position: relative;
    }
    .main-navbar--rail .main-navbar-nav .nav-item + .nav-item {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    .main-navbar--rail .main-navbar-nav .nav-link {
        min-height: var(--nav-h);
        padding: 0.2rem 0.35rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.1;
    }
}
.main-navbar--rail .main-navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    transition: background 0.2s ease, color 0.2s;
    z-index: 0;
    border: none;
}
/* Diagonal "tooling" cut on hover */
.main-navbar--rail .main-navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0,0,0,0.2);
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.main-navbar--rail .main-navbar-nav .nav-link:hover,
.main-navbar--rail .main-navbar-nav .nav-link.active {
    color: #fff !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}
.main-navbar--rail .main-navbar-nav .nav-link:hover::before,
.main-navbar--rail .main-navbar-nav .nav-link.active::before { opacity: 1; }
.main-navbar--rail .main-navbar-nav .nav-link::after { display: none; }
@media (min-width: 1200px) {
    .main-navbar--rail .main-navbar-nav .nav-link { font-size: 0.82rem; }
}

/* Buttons */
.btn { border-radius: 999px; padding: 0.45rem 1.2rem; font-weight: 600; font-size: 0.9rem; transition: transform 0.15s, box-shadow 0.2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--color-steel);
    border-color: var(--color-steel);
    box-shadow: 0 2px 0 rgba(10, 20, 30, 0.1);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--color-brand) !important;
    border-color: var(--color-brand) !important;
    color: #fff;
}
.btn-outline-primary {
    border: 1px solid var(--color-steel);
    color: var(--color-steel);
    background: #fff;
}
.btn-outline-primary:hover { background: var(--color-canvas); color: var(--color-brand); border-color: var(--color-brand); }
.btn-link { color: var(--color-steel); }
.btn-link:hover { color: var(--color-brand); }

/* Breadcrumb */
.breadcrumb { background: transparent; padding: 0.6rem 0; font-size: 0.9rem; }
.breadcrumb-item a { color: var(--color-steel); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: var(--text-muted); }

/* Carousels */
.hero-section .site-carousel,
.hero-section .carousel {
    --carousel-ctrl: rgba(26, 90, 110, 0.92);
    overflow: hidden;
    border-radius: 0 0 1.4rem 1.4rem;
    box-shadow: 0 18px 48px -20px rgba(6, 18, 32, 0.35);
    background: linear-gradient(165deg, #d9e0e8 0%, var(--color-canvas) 50%, #eef0f2 100%);
}
@media (min-width: 1200px) {
    .hero-section .container { max-width: 1140px; }
}
.hero-section .carousel-item { transition: transform 0.65s ease-in-out, opacity 0.55s ease; }
.hero-section .carousel-indicators {
    left: 0; right: 0;
    margin: 0 auto 1.1rem; width: auto; padding: 0.4rem 0.55rem;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.35rem;
    z-index: 2; bottom: 0; list-style: none; max-width: calc(100% - 1.5rem);
    border-radius: 99px;
    background: rgba(6, 18, 32, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-section .carousel-indicators [type=button] {
    width: 2.1rem; height: 0.28rem; border: none; border-radius: 99px;
    background: rgba(255,255,255,0.35); opacity: 1; text-indent: -9999px; overflow: hidden; margin: 0; padding: 0;
    transition: width 0.25s ease, background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-section .carousel-indicators [type=button].active {
    width: 2.5rem; background: #fff;
    box-shadow: 0 0 0 1px rgba(26, 58, 82, 0.25);
}
.hero-section .carousel-indicators [type=button]:not(.active):hover { background: rgba(255,255,255,0.75); }

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    top: 50%; transform: translateY(-50%);
    width: 2.8rem; height: 2.8rem; border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 26, 40, 0.1);
    box-shadow: 0 3px 14px rgba(0,0,0,0.1);
    opacity: 1; z-index: 2; transition: background 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-section .carousel-control-prev { left: 0.9rem; }
.hero-section .carousel-control-next { right: 0.9rem; }
@media (min-width: 768px) {
    .hero-section .carousel-control-prev, .hero-section .carousel-control-next { width: 2.95rem; height: 2.95rem; }
    .hero-section .carousel-control-prev { left: 1.2rem; }
    .hero-section .carousel-control-next { right: 1.2rem; }
}
.hero-section .carousel-control-prev:hover, .hero-section .carousel-control-next:hover {
    background: var(--carousel-ctrl);
    border-color: rgba(0,0,0,0.1);
    transform: translateY(-50%) scale(1.03);
}
.hero-section .carousel-control-prev-icon, .hero-section .carousel-control-next-icon { width: 1.2rem; height: 1.2rem; background-size: 100% 100%; }
.hero-section .carousel-control-prev-icon, .hero-section .carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(35%) sepia(20%) saturate(2000%) hue-rotate(155deg);
    opacity: 0.9;
}
.hero-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-section .carousel-control-next:hover .carousel-control-next-icon { filter: brightness(0) invert(1); opacity: 1; }
@media (max-width: 576px) {
    .hero-section .carousel-control-prev, .hero-section .carousel-control-next { width: 2.25rem; height: 2.25rem; }
    .hero-section .carousel-control-prev { left: 0.35rem; }
    .hero-section .carousel-control-next { right: 0.35rem; }
}
.hero-section .carousel-inner { border-radius: inherit; }
.fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.bg-olive { background-color: var(--color-brand) !important; }

/* Footer */
footer.site-footer,
footer { background: linear-gradient(180deg, var(--color-brand-mid) 0%, #070f16 100%) !important; color: rgba(255,255,255,0.88) !important; }
footer h5, footer h4 { color: #fff; border-color: rgba(255,255,255,0.1) !important; }
.text-olive { color: #7eb8c9 !important; }
footer a { color: rgba(255,255,255,0.85); }
footer a:hover { color: #fff !important; }

.footer-logo h3 { color: #fff !important; }
.infopany-info li i, .footer-links a i { color: #7eb8c9; }

/* Cookie */
.cookie-consent-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    padding: 0.9rem 0;
    background: rgba(5, 14, 24, 0.98) !important;
    color: #e8ebef;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-consent-banner.cookie-consent--visible {
    display: block;
}
body.cookie-banner-open {
    padding-bottom: 5.5rem;
}
@media (min-width: 768px) {
    body.cookie-banner-open { padding-bottom: 4.5rem; }
}
.cookie-consent-banner a { color: #9fd4e8; }
.cookie-consent-banner a:hover { color: #c7e8f5; }
.cookie-consent-banner a:focus { outline: 2px solid rgba(255,255,255,0.4); outline-offset: 2px; }
.cookie-consent-banner p { margin-bottom: 0.35rem; }
@media (min-width: 768px) {
    .cookie-consent-banner p { margin-bottom: 0; }
}

/* ——— Homepage: unique blocks ——— */
.page-home .hero-section { margin-top: 0; }
.page-home .home-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.04em;
    color: var(--color-steel);
    margin-bottom: 0.6rem;
}
.page-home .home-hero__title { font-size: clamp(1.5rem, 3.2vw, 2.2rem) !important; }
.page-home .hero-section .display-4 { line-height: 1.1; }
.page-home .trust-bar {
    background: var(--ink);
    color: rgba(255,255,255,0.88);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 0.5rem 0.75rem;
    margin: -0.2rem 0.75rem 0.25rem 0.75rem;
    box-shadow: 0 8px 32px -12px rgba(0,0,0,0.3);
    position: relative; z-index: 1;
}
.page-home .trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around;
    gap: 0.4rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.01em;
}
.page-home .trust-bar__item {
    display: flex; align-items: center; gap: 0.4rem; white-space: nowrap;
    opacity: 0.9;
}
.page-home .trust-bar__item i { color: #e8742e; font-size: 0.9rem; }

.page-home .section-angled {
    position: relative; padding: 3.5rem 0;
    background: #fff; overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}
.page-home .section-angled--alt { background: var(--color-paper); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 20px)); }

.page-home .section-head { margin-bottom: 1.5rem; }
.page-home .section-kicker { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: none; color: var(--color-steel); margin: 0 0 0.2rem; }
.page-home .section-kicker::after { content: ""; display: block; width: 3rem; height: 2px; margin-top: 0.45rem; background: linear-gradient(90deg, var(--color-accent), rgba(199, 93, 26, 0.2)); border-radius: 1px; }
.page-home h2 { font-size: 1.65rem; }
.page-home .section-lead { color: var(--text-muted); max-width: 40rem; }

.page-home .value-grid { --vg-gap: 1.25rem; }
.page-home .value-tile {
    position: relative;
    background: #fff; border: 1px solid var(--line-soft);
    border-radius: 0.65rem; padding: 1.2rem 1.1rem 1.1rem; height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}
.page-home .value-tile::before { content: ""; position: absolute; right: 0; top: 0; width: 5rem; height: 5rem; background: linear-gradient(135deg, var(--color-accent-soft) 0%, transparent 64%); }
.page-home .value-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(10, 20, 30, 0.1); }
.page-home .value-tile__n { font-family: "Sora", sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--color-steel); letter-spacing: 0.15em; }
.page-home .value-tile h3 { font-size: 1.05rem; margin: 0.35rem 0; }
.page-home .value-tile p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

.page-home .cat-mosaic .cat-card {
    display: block; text-decoration: none; color: inherit; border: none; border-radius: 0.75rem;
    overflow: hidden; background: #000; min-height: 12rem; position: relative; box-shadow: 0 8px 30px -8px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, box-shadow 0.25s;
}
.page-home .cat-mosaic .cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,12,20,0.92) 0%, rgba(6,12,20,0.1) 55%, transparent 100%); z-index: 1; }
.page-home .cat-mosaic .cat-card:hover { transform: scale(1.01); box-shadow: 0 12px 40px -4px rgba(0,0,0,0.3); }
.page-home .cat-mosaic .cat-card__img { width: 100%; height: 12rem; object-fit: cover; display: block; }
.page-home .cat-mosaic .cat-card__body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.1rem 1rem; }
.page-home .cat-mosaic .cat-card__label { color: #fff; font-size: 1.15rem; font-weight: 700; }
.page-home .cat-mosaic .cat-card__line { display: block; width: 2.5rem; height: 2px; background: #e8742e; margin: 0.45rem 0; border-radius: 1px; }
.page-home .cat-mosaic .cat-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0 0 0.9rem; line-height: 1.45; }
.page-home .cat-mosaic .cat-btn { display: inline-block; color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.45); border-radius: 99px; padding: 0.3rem 0.85rem; }
.page-home .cat-mosaic .cat-card:hover .cat-btn { background: #e8742e; border-color: #e8742e; }

.page-home .product-reel { background: linear-gradient(180deg, var(--color-canvas) 0%, #fff 8%); }
.page-home .home-product-card { border: 1px solid var(--line-soft) !important; border-radius: 0.6rem; overflow: hidden; background: #fff; }
.page-home .home-product-card { transition: box-shadow 0.2s, border-color 0.2s; }
.page-home .home-product-card:hover { box-shadow: 0 10px 32px -10px rgba(0,0,0,0.1); border-color: rgba(42, 111, 138, 0.25) !important; }
.page-home .home-product-card .card-img-top { background: #f0f1f3; }
.page-home .home-product-card .card-body { position: relative; }
.page-home .home-price { color: var(--ink); }
.page-home .home-about { background: #fff; border: 1px solid var(--line-soft); border-radius: 0.8rem; padding: 0; overflow: hidden; }
.page-home .home-about__inner { padding: 2rem; }
.page-home .home-about__art { min-height: 20rem; background: linear-gradient(150deg, var(--color-brand) 0%, #0a1824 100%); }
.page-home .home-gal { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.4rem; padding: 0.5rem; min-height: 14rem; }
.page-home .home-gal img { width: 100%; height: 100%; min-height: 0; object-fit: cover; border-radius: 0.35rem; }
.page-home .list-checks li { color: var(--text-muted); font-size: 0.95rem; }
.page-home .list-checks i { color: var(--color-steel) !important; }
.page-home .section-contact { background: #fff; border: 1px solid var(--line-soft); border-radius: 0.8rem; box-shadow: 0 12px 40px -16px rgba(0,0,0,0.1); }
.page-home .section-contact > form { padding: 1.5rem; }
@media (min-width: 576px) {
    .page-home .section-contact > form { padding: 2rem; }
}
.page-home .form-control, .page-home .form-select { border-color: var(--line-soft); border-radius: 0.4rem; }
.page-home .form-control:focus { box-shadow: 0 0 0 2px rgba(42, 111, 138, 0.15); border-color: var(--color-steel); }
.page-home .contact-head { max-width: 32rem; margin-left: auto; margin-right: auto; }
.page-home .contact-head .section-kicker { margin-left: auto; margin-right: auto; }
.page-home .contact-head .section-kicker::after { margin: 0.4rem auto 0; }
.page-home .text-white-50 { color: rgba(255,255,255,0.55) !important; }
.page-home .bg-light { background-color: var(--color-canvas) !important; }
.page-home .featured-products { --bs-bg-opacity: 0; }

/* Mobile nav */
@media (max-width: 991.98px) {
    .main-navbar--rail .main-navbar__inner { padding: 0 !important; }
    .main-navbar--rail .navbar-collapse { border-radius: 0 0 0.4rem 0.4rem; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.2); }
    .main-navbar--rail .main-navbar-nav .nav-link { padding: 0.6rem 1.1rem; min-height: 0; font-size: 0.78rem; letter-spacing: 0.08em; }
    .main-navbar--rail .main-navbar-nav .nav-link::before { display: none !important; }
    .main-navbar--rail .main-navbar-nav .nav-item + .nav-item { border-top: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 768px) {
    .cookie-consent-banner .btn { margin-top: 8px; }
    .page-home .trust-bar { margin: -0.1rem 0.25rem 0.25rem; border-radius: 0.35rem; }
}
@media (max-width: 576px) { .page-home .value-grid .col-md-3 { max-width: 100%; } }

/* Legacy / utilities */
.text-dark { color: var(--ink) !important; }
.object-fit-cover { object-fit: cover; }
.page-home .value-tile a { color: var(--color-steel); font-weight: 600; }
.page-home .value-tile a:hover { color: var(--color-brand); }
