@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #222222;
    --soft-ink: #444444;
    --muted: #666666;
    --line: #dbdbdb;
    --paper: #ffffff;
    --canvas: #f4f4f2;
    --sand: #e8e8e8;
    --sage: #888888;
    --sage-dark: #222222;
    --copper: #cda228;
    --charcoal: #222222;
    --white: #ffffff;
    --gold: #ecb928;
    --shadow: 0 22px 60px rgba(34, 34, 34, 0.12);
    --radius: 6px;
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: var(--paper);
    content: "";
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    gap: clamp(18px, 3vw, 42px);
    align-items: center;
    padding: 18px clamp(20px, 4vw, 64px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-with-logo {
    display: inline-grid;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.brand-logo {
    display: grid;
    align-items: center;
}

.brand-logo-stack {
    gap: 4px;
}

.brand-logo img {
    width: auto;
    max-width: 180px;
    max-height: 42px;
}

.brand-logo .custom-logo {
    width: auto !important;
    max-width: 180px !important;
    max-height: 42px !important;
    object-fit: contain;
}

.site-footer .brand-logo .custom-logo {
    max-width: 220px !important;
    max-height: 48px !important;
}

.brand-logo-stack small {
    margin-top: 0;
    font-size: 10px;
    line-height: 1.1;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 21px;
    line-height: 1;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.02em;
    text-transform: none;
}

.primary-nav ul {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav {
    justify-self: center;
}

.primary-nav a {
    position: relative;
    display: block;
    padding: 12px 15px;
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 820;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: color 160ms ease, background 160ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 15px;
    bottom: 5px;
    left: 15px;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover {
    color: var(--copper);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after,
.primary-nav .current-menu-ancestor > a::after,
.primary-nav .current_page_parent > a::after {
    opacity: 1;
    transform: scaleX(1);
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current_page_parent > a {
    color: var(--ink);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.08);
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.header-cta,
.button.primary {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(34, 34, 34, 0.18);
}

.header-cta:hover,
.button.primary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 34px rgba(205, 162, 40, 0.28);
    transform: translateY(-1px);
}

.button.secondary {
    position: relative;
    gap: 12px;
    padding-right: 48px;
    border-color: var(--line);
    color: var(--ink);
    background: var(--canvas);
    box-shadow: none;
}

.button.secondary::after {
    position: absolute;
    right: 18px;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background: transparent;
    content: "";
    transform: rotate(45deg);
}

.button.secondary:hover {
    color: var(--copper);
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(34, 34, 34, 0.09);
}

.button.ghost {
    position: relative;
    border-color: var(--line);
    color: var(--ink);
    background: var(--white);
    box-shadow: none;
}

.button.ghost:hover {
    border-color: var(--gold);
    background: #fffaf0;
    color: var(--copper);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button-row.center {
    justify-content: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.nav-backdrop {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

.hero,
.page-hero,
.product-detail-hero {
    padding: clamp(66px, 8vw, 118px) clamp(20px, 5vw, 78px);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.16) 100%),
        url("../images/pet-bowl-feeding-scene.jpg") center 58% / cover no-repeat;
}

.hero::after {
    position: absolute;
    right: clamp(16px, 4vw, 62px);
    bottom: 22px;
    color: rgba(255, 255, 255, 0.1);
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(72px, 15vw, 220px);
    line-height: 0.7;
    content: "BNB";
}

.hero-copy,
.hero-media {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 760px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
}

h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(46px, 6.7vw, 90px);
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(31px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.hero p,
.page-hero p,
.product-detail-hero p,
.section-heading p,
.split p {
    color: var(--muted);
    font-size: 18px;
}

.hero-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin-top: 22px;
}

.hero .eyebrow {
    color: var(--gold);
}

.hero .button.secondary,
.hero .button.ghost {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: none;
}

.hero .button.secondary:hover,
.hero .button.ghost:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.hero .button.primary {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.hero .button.primary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.hero-media {
    display: grid;
    grid-template-columns: 0.18fr 1fr;
    align-items: end;
}

.hero-media img,
.retail-panel img,
.testimonial-media img,
.about-image img,
.about-grid img,
.product-detail-hero img {
    width: 100%;
    aspect-ratio: 4 / 4.45;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.hero-media img {
    grid-column: 2;
}

.hero-note {
    grid-column: 1 / 3;
    justify-self: start;
    width: min(360px, 86%);
    margin-top: -64px;
    padding: 22px;
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 12px 12px 0 var(--sand);
}

.hero-note strong,
.hero-note span {
    display: block;
}

.hero-note strong {
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.hero-note span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: clamp(58px, 7vw, 104px) clamp(20px, 5vw, 78px);
}

.muted {
    background: var(--canvas);
}

.section-heading {
    max-width: 840px;
    margin-bottom: 38px;
}

.section-heading.center,
.final-cta {
    text-align: center;
}

.icon-grid,
.service-grid,
.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

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

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

.buyer-card {
    display: grid;
    align-content: start;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(34, 34, 34, 0.06);
}

.buyer-card h3 {
    font-size: 24px;
}

.buyer-card p {
    color: var(--muted);
}

.buyer-card .mini-list {
    margin-bottom: 0;
}

.icon-grid article,
.service-grid article,
.detail-grid article,
.detail-grid details,
.story-card {
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.service-grid article h2,
.detail-grid article h2,
.detail-grid summary,
.story-card h2 {
    font-size: 26px;
}

.testimonial-band,
.about-showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.testimonial-band blockquote {
    margin: 24px 0 0;
    padding: 0;
    border: 0;
}

.testimonial-band blockquote p {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.12;
}

.testimonial-band cite {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-style: normal;
    font-weight: 800;
}

.testimonial-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.testimonial-points span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--canvas);
    font-size: 12px;
    font-weight: 800;
}

.about-copy {
    max-width: 760px;
}

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

.about-grid article {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(34, 34, 34, 0.06);
}

.about-grid article > div {
    padding: 26px;
}

.about-grid img {
    aspect-ratio: 16 / 10;
    box-shadow: none;
}

.client-reviews {
    background: var(--white);
    overflow: hidden;
}

.review-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    gap: 22px;
    margin-top: 36px;
}

.review-mosaic::before {
    position: absolute;
    inset: 42px 8% 38px;
    content: "";
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(246, 175, 56, 0.18), rgba(255, 255, 255, 0) 54%),
        repeating-linear-gradient(0deg, rgba(34, 34, 34, 0.04) 0, rgba(34, 34, 34, 0.04) 1px, transparent 1px, transparent 18px),
        repeating-linear-gradient(90deg, rgba(34, 34, 34, 0.04) 0, rgba(34, 34, 34, 0.04) 1px, transparent 1px, transparent 18px);
}

.review-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    align-self: start;
    min-height: 178px;
    padding: 22px;
    border: 1px solid rgba(34, 34, 34, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 54px rgba(34, 34, 34, 0.12);
    transform: none;
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-avatar {
    display: inline-grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--soft);
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.review-card strong,
.review-card em {
    display: block;
}

.review-card strong {
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
}

.review-card em {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-card p {
    margin: 0;
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.34;
}

.detail-grid summary {
    display: block;
    color: var(--ink);
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.12;
    list-style: none;
}

.detail-grid summary::-webkit-details-marker {
    display: none;
}

.solution-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--sage-dark);
}

.solution-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-grid p,
.service-grid p,
.product-card p {
    color: var(--muted);
}

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

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

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(219, 219, 219, 0.86);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 18px 46px rgba(34, 34, 34, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
    border-color: rgba(205, 162, 40, 0.64);
    box-shadow: 0 26px 58px rgba(34, 34, 34, 0.12);
    transform: translateY(-6px);
}

.product-image {
    display: block;
    background: var(--canvas);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
    transition: transform 360ms ease;
}

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

.product-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: var(--canvas);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.product-carousel.is-dragging {
    cursor: grabbing;
}

.product-carousel img {
    pointer-events: none;
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 420ms ease;
}

.carousel-image.is-active {
    position: relative;
    opacity: 1;
}

.card-carousel,
.detail-carousel {
    aspect-ratio: 1 / 1.05;
}

.detail-carousel {
    width: min(100%, 620px);
    max-width: 620px;
    justify-self: end;
    box-shadow: var(--shadow);
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 13px;
    display: flex;
    gap: 7px;
    padding: 7px 9px;
    border: 1px solid rgba(34, 34, 34, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    transform: translateX(-50%);
}

.carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(34, 34, 34, 0.24);
    cursor: pointer;
}

.carousel-dots button.is-active {
    background: var(--ink);
}

.product-card-body {
    position: relative;
    padding: 20px 20px 22px;
}

.product-card-body::before {
    display: block;
    width: 42px;
    height: 2px;
    margin-bottom: 16px;
    background: var(--gold);
    content: "";
}

.product-card-body h3 {
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tag {
    display: inline-flex;
    margin: 0 6px 12px 0;
    padding: 5px 10px;
    border: 1px solid rgba(205, 162, 40, 0.38);
    border-radius: 999px;
    background: #fffaf0;
    color: var(--ink);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-muted {
    margin-left: 0;
    border-color: var(--line);
    background: var(--canvas);
    color: var(--muted);
}

.reveal-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 560ms ease, transform 560ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.reveal-card.is-visible:hover {
    transform: translateY(-6px);
}

.product-grid .reveal-card:nth-child(2) {
    transition-delay: 80ms;
}

.product-grid .reveal-card:nth-child(3) {
    transition-delay: 150ms;
}

.product-grid .reveal-card:nth-child(4) {
    transition-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .product-image img,
    .product-card {
        transition: none;
    }
}

.group-showcase + .group-showcase {
    margin-top: 48px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.group-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 20px;
}

.mini-list,
.check-list {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.mini-list li,
.check-list li {
    position: relative;
    padding-left: 24px;
    margin: 9px 0;
    color: var(--muted);
}

.mini-list li::before,
.check-list li::before {
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 12px;
    height: 1px;
    background: var(--copper);
    content: "";
}

.text-link,
.product-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 850;
}

.text-link::after,
.product-detail-link::after {
    content: ">";
}

.product-detail-link {
    margin-top: 14px;
}

.split,
.product-detail-hero,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.capability-list,
.process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.capability-list span,
.process-list span {
    min-height: 82px;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    font-weight: 780;
}

.quality-band {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    background: var(--charcoal);
    color: var(--paper);
}

.quality-band p {
    color: rgba(255, 255, 255, 0.72);
}

.quality-band .eyebrow {
    color: var(--gold);
}

.quality-band .button.secondary {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: var(--paper);
}

.quality-band .button.secondary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.final-cta {
    background: var(--canvas);
}

.final-cta p:not(.eyebrow) {
    max-width: 760px;
    margin: 14px auto 28px;
    color: var(--soft-ink);
}

.final-cta h2 + .button {
    margin-top: 28px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.82), rgba(244, 244, 242, 0.9)),
        url("../images/pet-bowl-feeding-scene.jpg") center 58% / cover no-repeat;
}

.page-hero::after {
    display: block;
    width: 90px;
    height: 1px;
    margin: 30px auto 0;
    background: var(--ink);
    content: "";
}

.page-hero.compact {
    padding-bottom: 48px;
}

.page-hero h1,
.page-hero p {
    margin-left: auto;
    margin-right: auto;
}

.page-hero h1 {
    max-width: 1050px;
}

.page-hero p {
    max-width: 760px;
}

.product-filter-band {
    display: grid;
    gap: 18px;
    padding: 28px clamp(20px, 5vw, 78px);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-group > span {
    min-width: 112px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.filter-chip {
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--canvas);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-1px);
}

[hidden] {
    display: none !important;
}

.product-detail-hero {
    background: var(--canvas);
}

.product-visual-section {
    background: var(--white);
}

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

.product-visual-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(34, 34, 34, 0.07);
}

.product-visual-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--canvas);
}

.product-visual-card div {
    padding: 18px;
}

.product-visual-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-visual-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
}

.detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.spec-list {
    margin: 18px 0 0;
}

.spec-list div {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.spec-list dt {
    color: var(--muted);
    font-weight: 760;
}

.spec-list dd {
    margin: 0;
}

.inquiry-form {
    padding: 28px;
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 14px 14px 0 var(--sand);
}

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

label {
    display: grid;
    gap: 7px;
    color: var(--soft-ink);
    font-weight: 760;
    font-size: 13px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

input:focus,
select:focus,
textarea:focus {
    outline: 1px solid var(--ink);
    outline-offset: 2px;
}

textarea {
    resize: vertical;
}

.inquiry-form > label {
    margin: 14px 0 18px;
}

.fluent-inquiry-form .ff-el-group {
    margin-bottom: 15px;
}

.fluent-inquiry-form .bnb-hide-front-label .ff-el-input--label,
.fluent-inquiry-form .bnb-hide-front-label > label:first-child {
    display: none !important;
}

.inquiry-form label.bnb-hide-front-label {
    gap: 0;
    font-size: 0;
}

.inquiry-form label.bnb-hide-front-label input {
    font-size: 13px;
}

.fluent-inquiry-form .ff-btn-submit {
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    background: var(--ink) !important;
    color: var(--paper) !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-actions a {
    color: var(--sage-dark);
    font-weight: 850;
}

.contact-action-link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px 10px 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-size: 13px;
    line-height: 1.25;
    box-shadow: 0 10px 22px rgba(34, 34, 34, 0.06);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-action-link:hover {
    border-color: var(--gold);
    color: var(--ink);
    box-shadow: 0 14px 28px rgba(34, 34, 34, 0.1);
    transform: translateY(-1px);
}

.contact-action-link::before {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 16px;
    height: 16px;
    color: var(--copper);
    font-size: 15px;
    line-height: 16px;
    text-align: center;
    transform: translateY(-50%);
}

.email-link::before {
    content: "@";
}

.whatsapp-link::before {
    width: 9px;
    height: 9px;
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
}

.insights-band {
    background: var(--white);
}

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

.article-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 278px;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--paper);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card:hover {
    border-color: var(--ink);
    box-shadow: 10px 10px 0 var(--sand);
    transform: translate(-2px, -2px);
}

.article-card h2,
.article-card h3 {
    margin: 0;
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 27px;
    font-weight: 800;
}

.article-card p {
    margin: 0;
    color: var(--muted);
}

.article-meta {
    color: var(--copper);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-action {
    margin-top: 30px;
}

.empty-state {
    max-width: 720px;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--paper);
}

.single-article {
    background: var(--paper);
}

.single-article-header {
    padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) 46px;
    background: var(--canvas);
    text-align: center;
}

.single-article-header h1 {
    margin-left: auto;
    margin-right: auto;
}

.single-article-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 58px 20px;
    color: var(--ink);
    font-size: 19px;
}

.single-article-content p {
    color: var(--muted);
}

.single-article-cta {
    max-width: 900px;
    margin: 0 auto 74px;
    padding: 36px;
    border: 1px solid var(--line);
    background: var(--canvas);
    text-align: center;
}

.form-status {
    padding: 12px 14px;
    border: 1px solid var(--line);
    font-weight: 750;
}

.form-status.success {
    background: #edf5ea;
    color: var(--sage-dark);
}

.form-status.error {
    background: #fff0ea;
    color: #8f3f22;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 34px;
    padding: 54px clamp(20px, 5vw, 78px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--charcoal);
    color: var(--paper);
}

.site-footer p,
.site-footer small {
    color: rgba(255, 255, 255, 0.66);
}

.site-footer .brand-mark {
    border-color: rgba(255, 255, 255, 0.8);
    background: transparent;
    color: var(--paper);
}

.site-footer h2 {
    margin: 0 0 14px;
    font-family: "Gilroy", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
    color: var(--paper);
}

.footer-address {
    max-width: 420px;
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.45;
}

.footer-company {
    display: grid;
    gap: 4px;
    margin: 0 0 14px;
}

.footer-company strong,
.footer-company span {
    display: block;
}

.footer-company strong {
    color: var(--white);
}

.floating-contact {
    position: fixed;
    right: clamp(18px, 3vw, 32px);
    bottom: clamp(18px, 3vw, 32px);
    z-index: 60;
    display: grid;
    gap: 12px;
    justify-items: end;
}

.float-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 144px;
    min-height: 56px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.float-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.whatsapp-float {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
}

.whatsapp-float:hover {
    background: #20bd5a;
    box-shadow: 0 22px 48px rgba(37, 211, 102, 0.42);
}

.form-float {
    background: var(--ink);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(34, 34, 34, 0.18);
}

.form-float:hover {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 22px 48px rgba(205, 162, 40, 0.34);
}

.float-button svg {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.whatsapp-float svg {
    fill: currentColor;
}

.form-float svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.prose {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1120px) {
    .product-grid,
    .compact-grid,
    .icon-grid,
    .buyer-grid,
    .service-grid,
    .detail-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-header {
        grid-template-columns: auto 1fr;
    }

    .primary-nav {
        justify-self: stretch;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        display: block;
        width: min(82vw, 340px);
        height: 100vh;
        padding: 92px 24px 28px;
        border-right: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 26px 0 70px rgba(34, 34, 34, 0.16);
        transform: translateX(-104%);
        transition: transform 240ms ease;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav ul {
        display: grid;
        gap: 4px;
        justify-content: stretch;
    }

    .primary-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
        font-weight: 800;
    }

    .primary-nav a::after {
        right: auto;
        bottom: 10px;
        left: 0;
        width: 34px;
    }

    .nav-toggle {
        position: relative;
        z-index: 90;
        display: block;
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: var(--ink);
        background: var(--ink);
    }

    .nav-toggle[aria-expanded="true"] span {
        background: var(--white);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: block;
        border: 0;
        background: rgba(34, 34, 34, 0.32);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .header-cta {
        justify-self: end;
    }
}

@media (max-width: 820px) {
    .hero,
    .split,
    .reverse,
    .testimonial-band,
    .about-showcase,
    .about-grid,
    .product-detail-hero,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .review-mosaic {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 16px;
        margin-top: 26px;
    }

    .review-mosaic::before {
        display: none;
    }

    .review-card {
        grid-column: auto;
        min-height: 0;
        margin-top: 0;
        transform: none;
    }

    .product-detail-hero {
        padding-top: 28px;
    }

    .product-detail-hero .product-carousel {
        order: -1;
    }

    .product-detail-hero > div {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px;
    }

    .product-detail-hero h1 {
        flex-basis: 100%;
        font-size: clamp(36px, 10vw, 54px);
    }

    .product-detail-hero p,
    .product-detail-hero .button-row {
        flex-basis: 100%;
    }

    .product-detail-hero .tag {
        width: auto;
        max-width: 100%;
        margin-bottom: 6px;
        padding: 4px 8px;
        font-size: 10px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .product-detail-hero .tag-muted {
        margin-left: 0;
    }

    .product-filter-band {
        gap: 14px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .filter-group {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 3px;
        scrollbar-width: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-group > span,
    .filter-chip {
        flex: 0 0 auto;
    }

    .filter-group > span {
        min-width: auto;
    }

    .detail-carousel {
        justify-self: stretch;
        width: 100%;
        max-width: none;
    }

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


    .hero {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 96px;
    }

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

    .hero-media img,
    .hero-note {
        grid-column: 1;
    }

    .hero-note {
        width: 100%;
        margin-top: 16px;
    }

    .quality-band {
        display: block;
    }

    .quality-band .button {
        margin-top: 20px;
    }

    .form-grid,
    .capability-list,
    .process-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-header {
        gap: 12px;
    }

    .header-cta {
        display: none;
    }

    .brand small {
        display: none;
    }

    .site-header .brand-logo-stack small {
        display: block;
        max-width: 170px;
        overflow: hidden;
        color: var(--muted);
        font-size: 9px;
        line-height: 1.15;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    h1 {
        font-size: 42px;
    }

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

    .product-grid .reveal-card,
    .compact-grid .reveal-card {
        transform: translateY(16px);
    }

    .product-grid .reveal-card.is-visible,
    .compact-grid .reveal-card.is-visible {
        transform: translateY(0);
    }

    .product-grid .reveal-card.is-visible:hover,
    .compact-grid .reveal-card.is-visible:hover {
        transform: translateY(0);
    }

    .icon-grid,
    .buyer-grid,
    .service-grid,
    .capability-list,
    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .icon-grid article,
    .buyer-card,
    .service-grid article {
        display: grid;
        align-content: start;
        min-height: 132px;
        padding: 16px;
    }

    .icon-grid h3,
    .buyer-card h3,
    .service-grid h2 {
        font-size: 16px;
        line-height: 1.18;
    }

    .icon-grid p,
    .service-grid p {
        display: none;
    }

    .buyer-card p,
    .buyer-card .mini-list {
        display: none;
    }

    .buyer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .buyer-card {
        min-height: 0;
        padding: 18px;
    }

    .buyer-card p {
        display: -webkit-box;
        margin: 8px 0 0;
        overflow: hidden;
        color: var(--muted);
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .buyer-card .mini-list {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 12px;
    }

    .buyer-card .mini-list li {
        margin: 0;
        padding: 6px 9px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--canvas);
        font-size: 11px;
        font-weight: 800;
        line-height: 1.2;
    }

    .page-template-page-oem-odm .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        border-top: 0;
        border-left: 0;
    }

    .page-template-page-oem-odm .service-grid article {
        min-height: 0;
        padding: 18px 18px 18px 20px;
        border: 1px solid var(--line);
        border-left: 4px solid var(--gold);
        border-radius: 16px;
        background: var(--white);
        box-shadow: 0 14px 34px rgba(34, 34, 34, 0.06);
    }

    .page-template-page-oem-odm .service-grid h2 {
        font-size: 19px;
    }

    .page-template-page-oem-odm .service-grid p {
        display: block;
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.45;
    }

    .solution-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }

    .solution-icon svg {
        width: 21px;
        height: 21px;
    }

    .capability-list span,
    .process-list span {
        min-height: 58px;
        padding: 13px;
        font-size: 13px;
        line-height: 1.25;
    }

    .product-accordion {
        display: grid;
        gap: 0;
        padding-top: 32px;
        padding-bottom: 40px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .product-accordion details {
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        background: var(--white);
    }

    .product-accordion summary {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 17px 0;
        font-size: 18px;
        cursor: pointer;
    }

    .product-accordion summary::after {
        color: var(--muted);
        font-size: 24px;
        line-height: 1;
        content: "+";
    }

    .product-accordion details[open] summary::after {
        content: "-";
    }

    .product-accordion .check-list,
    .product-accordion .spec-list {
        margin: 0 0 18px;
    }

    .product-accordion .check-list li {
        margin: 7px 0;
        font-size: 14px;
        line-height: 1.45;
    }

    .product-accordion .spec-list div {
        grid-template-columns: 0.82fr 1fr;
        gap: 10px;
        padding: 9px 0;
        font-size: 13px;
        line-height: 1.35;
    }

    .product-visual-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .product-visual-grid {
        gap: 12px;
    }

    .product-visual-card div {
        padding: 13px;
    }

    .product-visual-card h3 {
        font-size: 15px;
    }

    .product-visual-card span {
        margin-bottom: 6px;
        font-size: 9px;
        line-height: 1.15;
    }

    .insights-band .article-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .insights-band .article-card {
        flex: 0 0 82%;
        min-height: 218px;
        padding: 20px;
        scroll-snap-align: start;
    }

    .insights-band .article-card h3 {
        font-size: 22px;
    }

    .insights-band .article-card p:not(.article-meta) {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .section.final-cta {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    .final-cta .button {
        min-height: 40px;
        padding: 10px 12px;
        font-size: 11px;
    }

    .site-footer {
        gap: 18px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .site-footer .footer-description {
        display: none;
    }

    .site-footer .footer-brand {
        margin-bottom: 4px;
    }

    .site-footer .footer-brand small,
    .site-footer .footer-address {
        display: block;
    }

    .site-footer h2 {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .site-footer a {
        margin: 4px 0;
        font-size: 13px;
        line-height: 1.3;
    }

    .footer-company {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.35;
    }

    .site-footer > div:nth-child(2),
    .site-footer > div:nth-child(3) {
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .floating-contact {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .float-button {
        min-height: 52px;
        width: 52px;
        padding: 0;
        justify-content: center;
    }

    .float-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .button-row,
    .button-row.center {
        display: grid;
        justify-content: stretch;
    }

    .button-row .button {
        width: 100%;
    }

    .button-row .button.ghost {
        justify-self: center;
        width: auto;
    }

    .product-detail-hero .button-row {
        justify-items: center;
        gap: 9px;
        margin-top: 22px;
    }

    .product-detail-hero .button-row .button,
    .product-detail-hero .button-row .button.ghost {
        width: min(100%, 218px);
        min-height: 40px;
        padding: 10px 14px;
        font-size: 10px;
    }

    .product-detail-hero .button-row .button.secondary {
        padding-right: 30px;
    }

    .product-detail-hero .button-row .button.secondary::after {
        right: 14px;
        width: 7px;
        height: 7px;
    }

    .hero .button-row {
        justify-items: center;
    }

    .hero .button-row .button,
    .hero .button-row .button.ghost {
        width: min(100%, 248px);
        min-height: 42px;
        padding: 11px 16px;
        font-size: 11px;
    }

    .hero .button.secondary {
        padding-right: 34px;
    }

    .hero .button.secondary::after {
        right: 16px;
        width: 7px;
        height: 7px;
    }

    .retail-cta-row {
        justify-items: center;
    }

    .retail-cta-row .button,
    .retail-cta-row .button.ghost {
        width: min(100%, 248px);
        min-height: 42px;
        padding: 11px 16px;
        font-size: 11px;
    }

    .retail-cta-row .button.secondary {
        padding-right: 34px;
    }

    .retail-cta-row .button.secondary::after {
        right: 16px;
        width: 7px;
        height: 7px;
    }

    .page-template-page-contact .contact-layout > .inquiry-form,
    .page-template-page-contact .contact-layout > .fluent-inquiry-form {
        order: initial;
    }

    .page-template-page-contact .contact-actions {
        grid-template-columns: 1fr;
        gap: 9px;
    }


    .service-grid,
    .detail-grid {
        border-left: 0;
    }

    .icon-grid {
        border-left: 1px solid var(--line);
    }
}
