﻿/*
Theme Name: HJJEANS B2B
Author: TTCH / Codex
Description: English-first B2B WordPress theme for HJJEANS denim wholesale catalogs and inquiry capture.
Version: 1.0.7
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: hjjeans-b2b
*/

:root {
    --ink: #0a1727;
    --denim: #174b82;
    --steel: #d8e3ee;
    --red: #b91f2d;
    --paper: #f7f8f6;
    --white: #ffffff;
    --muted: #647083;
    --line: rgba(10, 23, 39, .13);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(247, 248, 246, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.brand {
    font-weight: 900;
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 0;
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}
.brand-logo img {
    width: clamp(154px, 18vw, 210px);
    height: auto;
    display: block;
}
.site-nav {
    display: flex;
    gap: 18px;
    margin-left: auto;
    font-size: 14px;
}
.site-nav a {
    text-decoration: none;
    color: var(--muted);
}
.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    text-decoration: none;
    font-weight: 800;
}
.header-cta,
.button.primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.button.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

.hero {
    min-height: 82vh;
    display: flex;
    align-items: end;
    background-position: center;
    background-size: cover;
    color: var(--white);
}
.hero-inner {
    width: min(980px, 100%);
    padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 70px) clamp(42px, 7vw, 80px);
}
.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}
.hero .eyebrow { color: #ffccd0; }
.hero h1 {
    margin: 0;
    font-size: clamp(56px, 12vw, 132px);
    line-height: .9;
    letter-spacing: 0;
}
.hero p {
    max-width: 720px;
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.28;
}
.hero-actions,
.proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.proof-strip {
    margin-top: 28px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

.section {
    padding: clamp(52px, 8vw, 92px) clamp(18px, 4vw, 58px);
}
.intro-grid,
.capability-band,
.inquiry-band {
    display: grid;
    grid-template-columns: minmax(260px, 480px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
}
.section h2,
.page-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}
.section p,
.page-content p {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}
.product-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--steel);
}
.product-card div {
    padding: 18px;
}
.product-card h2,
.product-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
}
.product-card p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
}
.meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
}

.capability-band {
    background: var(--ink);
    color: var(--white);
}
.capability-band p,
.capability-band .eyebrow {
    color: #c7d5e8;
}
.capability-band ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.capability-band li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    font-weight: 800;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.inquiry-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
    font-size: 13px;
}
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 10px 12px;
    font: inherit;
}
.inquiry-form textarea,
.inquiry-form .wide,
.inquiry-form .full {
    grid-column: 1 / -1;
}
.inquiry-form button {
    justify-self: start;
    cursor: pointer;
}
.success-note {
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #e7f5ed;
    border: 1px solid #a8dabb;
    color: #155d33;
}

.page-main {
    padding: clamp(42px, 8vw, 90px) clamp(18px, 4vw, 58px);
}
.page-content {
    width: min(980px, 100%);
}
.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    padding: 34px clamp(18px, 4vw, 58px);
    background: var(--white);
    border-top: 1px solid var(--line);
}
.site-footer p {
    margin: 6px 0;
    color: var(--muted);
}
.legal-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .site-header { align-items: flex-start; flex-wrap: wrap; }
    .site-nav { order: 3; width: 100%; margin-left: 0; overflow-x: auto; }
    .intro-grid,
    .capability-band,
    .inquiry-band,
    .site-footer { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .inquiry-form { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .product-grid { grid-template-columns: 1fr; }
    .header-cta { display: none; }
}


/* BKZ TTCH plugin compatibility */
.entry-content .product-grid,
.page-content .product-grid {
    width: min(1180px, 100%);
    margin-top: 30px;
}
.product-card a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}
.product-card b,
.product-card span,
.product-card em {
    display: inline-block;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}
.product-card em {
    color: var(--red);
}
.inquiry-success,
.inquiry-form .form-note {
    grid-column: 1 / -1;
}
.inquiry-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    color: var(--muted);
}
.inquiry-form .consent input {
    width: auto;
    min-height: 0;
    margin-top: 4px;
}
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
}
.button-primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.button-secondary {
    background: var(--white);
    color: var(--ink);
}
.inquiry-success {
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #e7f5ed;
    border: 1px solid #a8dabb;
    color: #155d33;
}

/* UI review pass: product-card information hierarchy */
.product-card {
    box-shadow: 0 14px 34px rgba(10, 23, 39, .07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 75, 130, .28);
    box-shadow: 0 20px 46px rgba(10, 23, 39, .12);
}
.product-card .product-body,
.product-card > a > div {
    display: grid;
    gap: 10px;
    padding: 20px;
}
.product-card .product-body > span,
.product-card > a > div > span {
    color: #4f6683;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}
.product-card .product-body h3,
.product-card > a > div h3,
.product-card > a > div h2 {
    margin: 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.08;
}
.product-card .product-body p,
.product-card > a > div p {
    margin: 0;
    color: #52647c;
    font-size: 15px;
    line-height: 1.5;
}
.product-card dl {
    display: grid;
    gap: 10px;
    margin: 6px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
}
.product-card dl div {
    display: grid;
    grid-template-columns: minmax(74px, 92px) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
}
.product-card dt,
.product-card dd {
    margin: 0;
}
.product-card dt {
    color: #6b778a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}
.product-card dd {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}
@media (max-width: 520px) {
    .product-card dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}


/* Product detail page fallback for index.php route */
.product-detail {
    width: min(1180px, 100%);
}
.product-back {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 900;
    text-decoration: none;
}
.product-detail__grid {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}
.product-detail__media {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(10, 23, 39, .08);
}
.product-detail__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.product-detail__sku {
    margin: 0 0 8px;
    color: #4f6683;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
}
.product-detail__body h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .96;
}
.product-detail__summary {
    max-width: 720px;
    margin: 0 0 26px;
    color: #52647c;
    font-size: 19px;
    line-height: 1.6;
}
.product-detail__specs {
    display: grid;
    gap: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--line);
}
.product-detail__specs div {
    display: grid;
    grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.product-detail__specs dt,
.product-detail__specs dd {
    margin: 0;
}
.product-detail__specs dt {
    color: #6b778a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.product-detail__specs dd {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.45;
}
.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 800px) {
    .product-detail__grid,
    .product-detail__specs div {
        grid-template-columns: 1fr;
    }
    .product-detail__specs div {
        gap: 5px;
    }
}


/* Luxury ecommerce reference pass: editorial black/white product wall */
:root {
    --ink: #050505;
    --denim: #111111;
    --steel: #eeeeee;
    --red: #111111;
    --paper: #ffffff;
    --white: #ffffff;
    --muted: #555555;
    --line: rgba(0, 0, 0, .09);
    --tile: #f3f3f3;
}
body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--ink);
    background: #fff;
}
.site-header {
    position: sticky;
    min-height: 66px;
    padding: 0 clamp(18px, 3vw, 42px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(0,0,0,.08);
    backdrop-filter: blur(18px);
}
.brand-logo {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
}
.brand-logo img { display: none; }
.site-nav {
    gap: clamp(18px, 2vw, 34px);
    margin-left: auto;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 700;
}
.site-nav a {
    color: #111;
    text-decoration: none;
}
.header-cta {
    min-height: 36px;
    border: 0;
    background: transparent;
    color: #111;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
}
.hero {
    min-height: 72vh;
    color: #fff;
    background-position: center;
}
.hero-inner {
    width: min(1120px, 100%);
}
.eyebrow {
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: .16em;
}
.hero .eyebrow { color: rgba(255,255,255,.76); }
.hero h1,
.section h2,
.page-content h1,
.product-detail__body h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: -.03em;
}
.hero h1 {
    font-size: clamp(62px, 10vw, 150px);
}
.button,
.button-primary,
.button-secondary {
    min-height: 40px;
    border-radius: 0;
    border-color: #111;
    background: #111;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.button.secondary,
.button-secondary {
    background: #fff;
    color: #111;
}
.page-main {
    padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
}
.page-content {
    width: min(1720px, 100%);
    margin: 0 auto;
}
.page-content > h1:first-child {
    margin: 0 auto clamp(34px, 5vw, 62px);
    text-align: center;
    font-size: clamp(30px, 3.2vw, 54px);
    font-weight: 500;
}
.page-content > p:first-of-type {
    max-width: 720px;
    margin: -36px auto 40px;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}
.filter-bar,
.luxury-catalog-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    width: min(1720px, 100%);
    margin: 0 auto 18px;
    padding: 18px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    color: #111;
}
.luxury-catalog-bar__filter { justify-self: start; }
.luxury-catalog-bar__count { justify-self: center; font-weight: 700; }
.luxury-catalog-bar__sort { justify-self: end; }
.filter-bar button,
.filter-bar .filter {
    border: 0;
    background: transparent;
    color: #111;
    padding: 0;
    font: inherit;
    cursor: pointer;
}
.filter-bar .filter:not(.is-active) { display: none; }
.product-grid {
    width: min(1720px, 100%) !important;
    margin: 0 auto !important;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: #fff;
}
.product-card {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
    transition: none;
}
.product-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}
.product-card a {
    height: auto;
}
.product-card img {
    aspect-ratio: 3 / 3.72;
    width: 100%;
    object-fit: contain;
    padding: clamp(32px, 4vw, 76px);
    background: #f2f2f2;
}
.product-card .product-body,
.product-card > a > div {
    display: block;
    padding: 10px 0 28px;
    background: #fff;
}
.product-card .product-body > span,
.product-card > a > div > span {
    display: block;
    margin: 0 0 4px;
    color: #111;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
.product-card .product-body h3,
.product-card > a > div h3,
.product-card > a > div h2 {
    margin: 0 0 5px;
    color: #111;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}
.product-card .product-body p,
.product-card > a > div p {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.35;
}
.product-card dl {
    display: none;
}
.product-detail {
    width: min(1520px, 100%);
    margin: 0 auto;
}
.product-detail__grid {
    grid-template-columns: minmax(360px, 58vw) minmax(320px, 1fr);
    gap: clamp(28px, 4vw, 72px);
}
.product-detail__media {
    border: 0;
    border-radius: 0;
    background: #f2f2f2;
    box-shadow: none;
}
.product-detail__media img {
    padding: clamp(38px, 5vw, 90px);
    object-fit: contain;
    background: #f2f2f2;
}
.product-detail__sku {
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: .12em;
}
.product-detail__summary {
    color: #555;
    font-size: 16px;
}
.product-detail__specs dt {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
}
.product-detail__specs dd {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
}
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
    border-radius: 0;
    border-color: rgba(0,0,0,.18);
}
.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    font-family: Georgia, 'Times New Roman', serif;
}
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-card img { padding: 34px; }
    .product-detail__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .site-header { min-height: auto; padding-top: 14px; padding-bottom: 14px; }
    .site-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; }
    .product-grid { grid-template-columns: 1fr; }
    .filter-bar, .luxury-catalog-bar { grid-template-columns: 1fr; text-align: left; }
    .luxury-catalog-bar__count, .luxury-catalog-bar__sort { justify-self: start; }
}


/* Japan Blue reference pass: craft denim ecommerce system */
:root {
    --ink: #0a1628;
    --denim: #0c2872;
    --denim-bright: #1a3d8f;
    --indigo: #000a82;
    --paper: #ffffff;
    --tile: #f0f0f0;
    --soft: #f9f9f9;
    --line: rgba(10, 22, 40, .12);
    --muted: #666666;
    --muted-2: #797d87;
    --accent: #0c2872;
    --white: #ffffff;
}
html { scroll-behavior: smooth; }
body {
    color: var(--ink);
    background: var(--paper);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
}
a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.site-header {
    min-height: 74px;
    padding: 0 clamp(18px, 4vw, 54px);
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(10,22,40,.1);
    box-shadow: 0 2px 16px rgba(10,22,40,.04);
    backdrop-filter: blur(12px);
}
.brand-logo {
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.site-nav {
    gap: clamp(18px, 2.2vw, 38px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.site-nav a,
.header-cta { color: var(--ink); }
.site-nav a:hover,
.header-cta:hover { color: var(--denim-bright); }
.header-cta {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--ink);
    background: transparent;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.hero {
    position: relative;
    min-height: clamp(560px, 74vh, 820px);
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,22,40,.84) 0%, rgba(12,40,114,.56) 44%, rgba(10,22,40,.18) 100%),
        radial-gradient(circle at 18% 82%, rgba(26,61,143,.46), transparent 34%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto clamp(18px, 4vw, 56px) 28px auto;
    width: clamp(120px, 16vw, 240px);
    height: 6px;
    background: #fff;
    opacity: .86;
}
.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    padding: clamp(88px, 12vw, 156px) clamp(20px, 5vw, 72px);
}
.eyebrow,
.hero .eyebrow {
    color: var(--denim-bright);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero .eyebrow { color: rgba(255,255,255,.82); }
.hero h1,
.section h2,
.page-content h1,
.product-detail__body h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -.045em;
}
.hero h1 {
    max-width: 900px;
    font-size: clamp(58px, 11vw, 148px);
    line-height: .82;
    text-transform: uppercase;
}
.hero p {
    max-width: 620px;
    color: rgba(255,255,255,.88);
    font-size: clamp(17px, 2.2vw, 24px);
    line-height: 1.45;
}
.hero-actions { margin-top: 28px; }
.button,
.button-primary,
.button-secondary {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 0;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover,
.button-primary:hover,
.button-secondary:hover { transform: translateY(-1px); }
.button.primary,
.button-primary { background: var(--denim); border-color: var(--denim); }
.button.secondary,
.button-secondary { background: #fff; color: var(--ink); }
.proof-strip {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.26);
    color: rgba(255,255,255,.82);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.section { padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 58px); }
.section h2,
.page-content h1 {
    color: var(--ink);
    font-size: clamp(34px, 5vw, 72px);
    line-height: .92;
}
.section p,
.page-content p {
    color: var(--muted);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}
.intro-grid {
    max-width: 1240px;
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
}
.section-heading {
    max-width: 1240px;
    margin: 0 auto 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.section-heading h2::after,
.page-content > h1:first-child::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 18px;
    background: var(--denim);
}
.page-content {
    width: min(1240px, 100%);
    margin: 0 auto;
}
.page-content > h1:first-child {
    margin: 0 0 18px;
    text-align: left;
    font-size: clamp(36px, 5vw, 70px);
}
.page-content > p:first-of-type {
    max-width: 740px;
    margin: 0 0 42px;
    text-align: left;
}
.filter-bar {
    width: min(1240px, 100%);
    margin: 0 auto 28px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: transparent;
}
.filter-bar .filter,
.filter-bar button {
    display: inline-flex !important;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.filter-bar .filter.is-active,
.filter-bar button:hover { color: var(--denim); }
.product-grid {
    width: min(1240px, 100%) !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 20px;
    background: transparent;
}
.product-card {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    transition: transform .3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: none; }
.product-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: clamp(16px, 2vw, 30px);
    object-fit: contain;
    background: var(--tile);
    transition: transform .6s ease, opacity .4s ease;
}
.product-card:hover img { transform: scale(1.025); }
.product-card .product-body,
.product-card > a > div {
    display: block;
    padding: 14px 0 4px;
    background: #fff;
}
.product-card .product-body > span,
.product-card > a > div > span {
    display: block;
    margin-bottom: 5px;
    color: var(--denim);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.product-card .product-body h3,
.product-card > a > div h3,
.product-card > a > div h2 {
    margin: 0 0 7px;
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.28;
}
.product-card .product-body p,
.product-card > a > div p {
    margin: 0;
    color: var(--muted);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
}
.product-card dl { display: none; }
.capability-band {
    max-width: none;
    background: var(--ink);
    color: #fff;
}
.capability-band .eyebrow,
.capability-band p { color: rgba(255,255,255,.72); }
.capability-band li {
    border-color: rgba(255,255,255,.2);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    letter-spacing: .02em;
}
.inquiry-band { background: var(--soft); }
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
    border-radius: 0;
    border-color: rgba(10,22,40,.18);
    background: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.inquiry-form label {
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.product-detail {
    width: min(1240px, 100%);
    margin: 0 auto;
}
.product-detail__grid {
    grid-template-columns: minmax(320px, 52%) minmax(320px, 1fr);
    gap: clamp(32px, 5vw, 76px);
}
.product-detail__media {
    border: 0;
    border-radius: 0;
    background: var(--tile);
    box-shadow: none;
}
.product-detail__media img {
    padding: clamp(24px, 4vw, 62px);
    object-fit: contain;
    background: var(--tile);
}
.product-detail__sku,
.product-detail__specs dt {
    color: var(--denim);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.product-detail__summary,
.product-detail__specs dd {
    color: var(--muted);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
}
.product-detail__specs { border-color: var(--line); }
.product-detail__specs div { border-color: var(--line); }
.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.site-footer strong { color: var(--denim); }
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-detail__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .site-header { min-height: auto; padding-top: 14px; padding-bottom: 14px; }
    .site-nav { order: 3; width: 100%; margin-left: 0; overflow-x: auto; }
    .hero { min-height: 620px; align-items: end; }
    .product-grid { grid-template-columns: 1fr; }
    .filter-bar { justify-content: flex-start; overflow-x: auto; }
}

