:root {
    --black: #111111;
    --white: #ffffff;
    --olive: #4A5A3A;
    --slate: #44515A;
    --brown: #7A5A3A;
    --sand: #E7E2D6;
    --muted: #747474;
    --line: #dedede;
    --font-head: "Montserrat", "Space Grotesk", "Arial Black", Arial, sans-serif;
    --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: #fff;
    color: var(--black);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    height: 76px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.brand-logo span,
.brand-logo {
    font-family: var(--font-head);
    font-size: 18px;
    letter-spacing: 7px;
    font-weight: 700;
}

.primary-nav .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.primary-nav a {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    align-items: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

.cart-link {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-link em {
    font-style: normal;
    border: 1px solid var(--black);
    min-width: 20px;
    min-height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 34px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--black);
    margin: 6px 0;
}

.hero-section {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 4px solid #fff;
}

.hero-bg,
.brand-card,
.insta-tile {
    background-size: cover;
    background-position: center;
}

.hero-image-lake {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.05), rgba(0,0,0,.3)),
        radial-gradient(circle at 22% 58%, rgba(231,226,214,.22) 0 7%, transparent 8%),
        linear-gradient(180deg, #3c4649 0%, #18201d 42%, #08100e 100%);
}

.hero-image-lake:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 15%, rgba(255,255,255,.26), transparent 24%),
        linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.08) 36% 38%, transparent 39%),
        repeating-linear-gradient(165deg, rgba(255,255,255,.04) 0 2px, transparent 2px 14px);
    opacity: .8;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 0 18px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(34px, 5vw, 78px);
    letter-spacing: clamp(7px, 1.1vw, 18px);
    margin: 0 0 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 26px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.8px;
    font-weight: 900;
    transition: all .25s ease;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: #fff;
}

.btn-dark:hover {
    background: var(--olive);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 4px;
    background: #fff;
}

.brand-card {
    position: relative;
    min-height: 315px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    transition: transform .4s ease;
}

.brand-card:before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scale(1);
    transition: transform .6s ease, filter .6s ease;
    background: inherit;
    filter: saturate(.85) contrast(1.1);
}

.brand-card:hover:before {
    transform: scale(1.07);
    filter: saturate(1) contrast(1.2);
}

.brand-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.72));
    z-index: 1;
}

.brand-card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.brand-card h2 {
    margin: 0;
    font-family: var(--font-head);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 24px;
}

.brand-card p {
    margin: 7px 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 800;
}

.brand-card span {
    border: 1px solid #fff;
    padding: 9px 15px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.4px;
    font-weight: 900;
}

.brand-flyway { background: linear-gradient(135deg, #222, #5a624a); }
.brand-finway { background: linear-gradient(135deg, #111, #2d4650); }
.brand-fairway { background: linear-gradient(135deg, #44502b, #89935d); }
.brand-fieldway { background: linear-gradient(135deg, #2b1c12, #7a5a3a); }

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading.left { text-align: left; }

.section-heading p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 8px;
}

.section-heading h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 42px);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.collection-section,
.founders-section,
.social-packaging-section {
    padding: 70px 32px;
    max-width: 1500px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.collection-card {
    background: #f6f6f6;
    min-height: 240px;
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.collection-art {
    flex: 1;
    min-height: 130px;
    border-radius: 3px;
    margin-bottom: 18px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255,255,255,.55), transparent 30%),
        linear-gradient(135deg, #e9e9e9, #cfcfcf);
    transition: transform .3s ease;
}

.collection-card:hover .collection-art { transform: translateY(-5px) scale(1.03); }

.product-hats { background: linear-gradient(135deg, #050505, #242424); }
.product-polos { background: linear-gradient(135deg, #1f3139, #44515A); }
.product-hoodies { background: linear-gradient(135deg, #0f0f0f, #2b2b2b); }
.product-tees { background: linear-gradient(135deg, #f2efe8, #d6ccb8); }
.product-accessories { background: linear-gradient(135deg, #6f5836, #272018); }

.collection-card h3 {
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 13px;
}

.collection-card span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
}

.founders-section {
    border-top: 1px solid var(--line);
}

.hat-lineup {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.hat-card {
    text-align: center;
    padding: 18px;
    border: 1px solid #eee;
    background: #fff;
}

.hat-mock {
    height: 190px;
    border-radius: 16px 16px 30px 30px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: #fff;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.hat-card.olive .hat-mock { background: var(--olive); }
.hat-card.sand .hat-mock { background: var(--sand); color: var(--black); }
.hat-card.slate .hat-mock { background: var(--slate); }
.hat-card.white .hat-mock { background: #fafafa; color: var(--black); border: 1px solid #ddd; }
.hat-card.black .hat-mock { background: var(--black); }

.hat-card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px;
}

.hat-card p {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin: 0;
    font-size: 11px;
    font-weight: 800;
}

.feature-strip {
    margin-top: 36px;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-strip div {
    padding: 22px;
    text-align: center;
    border-right: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.feature-strip div:last-child { border-right: 0; }

.feature-strip strong,
.feature-strip span {
    display: block;
    font-size: 12px;
}

.story-band {
    background: var(--sand);
    margin: 30px 0;
    padding: 70px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.story-band h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: clamp(28px, 4vw, 54px);
}

.eyebrow.dark { color: var(--olive); }

.social-packaging-section {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    border-top: 1px solid var(--line);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.insta-tile {
    min-height: 180px;
    background: #ddd;
}

.insta-tile.mark {
    background: #050505;
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-head);
    letter-spacing: 10px;
    font-size: 32px;
}

.insta-tile.birds { background: linear-gradient(135deg, #b8a078, #38442d); }
.insta-tile.hat { background: linear-gradient(135deg, #4A5A3A, #111); }
.insta-tile.lake { background: linear-gradient(135deg, #44515A, #111); }
.insta-tile.field { background: linear-gradient(135deg, #7A5A3A, #2b1c12); }
.insta-tile.fish { background: linear-gradient(135deg, #1d3944, #a9b6aa); }
.insta-tile.cap { background: linear-gradient(135deg, #222, #44515A); }
.insta-tile.golf { background: linear-gradient(135deg, #4A5A3A, #d4d0c5); }
.insta-tile.whitehat { background: linear-gradient(135deg, #fafafa, #ddd); }

.box-mockup {
    height: 310px;
    background: linear-gradient(145deg, #060606, #1f1f1f);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
    transform: perspective(900px) rotateX(10deg) rotateZ(-2deg);
}

.box-mockup span {
    font-family: var(--font-head);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.box-mockup em {
    position: absolute;
    bottom: 38px;
    font-style: normal;
    letter-spacing: 6px;
}

.tag-row {
    display: flex;
    gap: 24px;
    margin-top: 35px;
    justify-content: center;
}

.hang-tag {
    width: 105px;
    height: 145px;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--font-head);
    letter-spacing: 4px;
    font-size: 18px;
    position: relative;
}

.hang-tag:before {
    content: "";
    position: absolute;
    top: 10px;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.hang-tag small {
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 10px;
    align-self: end;
    margin-bottom: 10px;
}

.site-footer {
    background: #0d0d0d;
    color: #fff;
    padding: 70px 32px 28px;
}

.footer-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.site-footer h2 {
    font-family: var(--font-head);
    letter-spacing: 7px;
    font-size: 22px;
}

.site-footer h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.site-footer p {
    color: #bbb;
    max-width: 380px;
    line-height: 1.7;
}

.site-footer a {
    display: block;
    color: #ccc;
    margin: 10px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    max-width: 1500px;
    margin: 50px auto 0;
    padding-top: 22px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 1050px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .mobile-menu-toggle {
        display: block;
        grid-column: 3;
    }

    .primary-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        display: none;
    }

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

    .primary-nav .menu {
        display: grid;
        gap: 0;
    }

    .primary-nav a {
        display: block;
        padding: 18px 32px;
        border-top: 1px solid var(--line);
    }

    .header-actions {
        display: none;
    }

    .brand-grid,
    .collection-grid,
    .hat-lineup,
    .feature-strip,
    .social-packaging-section,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .header-inner {
        padding: 0 18px;
    }

    .brand-logo span,
    .brand-logo {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .hero-section {
        min-height: 520px;
    }

    .brand-grid,
    .collection-grid,
    .hat-lineup,
    .feature-strip,
    .social-packaging-section,
    .footer-grid,
    .insta-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-height: 250px;
    }

    .collection-section,
    .founders-section,
    .social-packaging-section {
        padding: 50px 18px;
    }

    .story-band {
        padding: 50px 22px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}


/* v1.1.2 Premium homepage rebuild with true square image modules */
.hero-section,
.brand-grid,
.brand-editorial,
.brand-lux-grid {
    display: none !important;
}

body {
    background: #070706;
}

.wc-hero {
    position: relative;
    min-height: clamp(440px, 58vw, 760px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #070706;
}

.wc-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center center;
    transform: scale(1.01);
}

.wc-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.12), rgba(0,0,0,.38)),
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.26));
}

.wc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 34px 18px;
    max-width: 1200px;
}

.wc-hero-content p {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    font-size: 12px;
    font-weight: 900;
}

.wc-hero-content h1 {
    margin: 0 0 28px;
    font-family: var(--font-head);
    font-size: clamp(38px, 5.2vw, 82px);
    line-height: .98;
    letter-spacing: clamp(9px, 1.25vw, 22px);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 4px 28px rgba(0,0,0,.45);
}

.wc-hero-content a,
.wc-brand-info span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 30px;
    border: 1px solid rgba(255,255,255,.9);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.9px;
    font-size: 10px;
    font-weight: 900;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.wc-hero-content a:hover,
.wc-brand-tile:hover .wc-brand-info span {
    background: #fff;
    color: #090907;
}

.wc-brand-suite {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.05), transparent 28%),
        #070706;
    color: #fff;
    padding: clamp(46px, 5vw, 86px) 24px clamp(54px, 6vw, 96px);
}

.wc-suite-heading {
    max-width: 980px;
    margin: 0 auto clamp(28px, 4vw, 54px);
    text-align: center;
}

.wc-suite-heading p,
.wc-collection-intro p {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 3.8px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255,255,255,.62);
}

.wc-suite-heading h2,
.wc-collection-intro h2 {
    margin: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: clamp(5px, .7vw, 11px);
    font-size: clamp(28px, 3.3vw, 54px);
    line-height: 1.05;
}

.wc-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
    max-width: 1460px;
    margin: 0 auto;
}

.wc-brand-tile {
    --photo-size: clamp(260px, 17.5vw, 330px);
    display: grid;
    grid-template-columns: var(--photo-size) minmax(0, 1fr);
    min-height: var(--photo-size);
    background: #11110f;
    border: 1px solid rgba(255,255,255,.10);
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(0,0,0,.24);
    transition: transform .24s ease, box-shadow .24s ease;
}

.wc-brand-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 42px 105px rgba(0,0,0,.32);
}

.wc-brand-photo {
    width: var(--photo-size);
    height: var(--photo-size);
    min-height: 0;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .7s ease, filter .7s ease;
}

.wc-brand-tile:hover .wc-brand-photo {
    transform: scale(1.018);
    filter: contrast(1.04) saturate(1.04);
}

.wc-flyway .wc-brand-photo {
    background-image: url('../images/flyway.jpg');
}

.wc-finway .wc-brand-photo {
    background-image: url('../images/finway.jpg');
}

.wc-fairway .wc-brand-photo {
    background-image: url('../images/fairway.jpg');
}

.wc-fieldway .wc-brand-photo {
    background-image: url('../images/fieldway.jpg');
}

.wc-brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    padding: clamp(26px, 3vw, 48px);
    background:
        radial-gradient(circle at 86% 13%, rgba(255,255,255,.055), transparent 28%),
        linear-gradient(135deg, #171714 0%, #090907 100%);
}

.wc-brand-kicker {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 3.7px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255,255,255,.64);
}

.wc-brand-info h3 {
    margin: 0 0 18px;
    font-family: var(--font-head);
    font-size: clamp(28px, 2.8vw, 50px);
    letter-spacing: clamp(7px, .72vw, 13px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.wc-brand-copy {
    margin: 0 0 26px;
    max-width: 430px;
    color: rgba(255,255,255,.72);
    line-height: 1.68;
    font-size: 13.5px;
}

.wc-collection-intro {
    background: #fff;
    color: #111;
    text-align: center;
    padding: clamp(48px, 5vw, 76px) 24px 18px;
}

.wc-collection-intro p {
    color: #111;
}

.collection-section {
    background: #fff;
    padding-top: 26px !important;
}

/* restore and polish lower original sections */
.founders-section,
.social-packaging-section {
    display: block !important;
    background: #fff;
}

.founders-section {
    border-top: 1px solid #e8e8e8;
}

.story-band {
    background: #f5f3ee;
}

.social-packaging-section {
    border-top: 1px solid #e8e8e8;
}

/* make hat mock text match brand direction */
.hat-mock,
.box-mockup span,
.hang-tag {
    letter-spacing: 3px;
}

@media (max-width: 1240px) {
    .wc-brand-grid {
        grid-template-columns: 1fr;
        max-width: 900px;
    }

    .wc-brand-tile {
        --photo-size: clamp(280px, 36vw, 390px);
    }
}

@media (max-width: 720px) {
    .wc-brand-suite {
        padding-left: 14px;
        padding-right: 14px;
    }

    .wc-brand-tile {
        --photo-size: 100%;
        grid-template-columns: 1fr;
    }

    .wc-brand-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .wc-brand-info {
        padding: 28px 24px 32px;
    }

    .wc-brand-info h3 {
        font-size: 32px;
        letter-spacing: 7px;
    }

    .wc-hero {
        min-height: 460px;
    }
}


/* v1.1.3 individual brand landing pages */
.brand-page {
    background: #070706;
    color: #fff;
}

.brand-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
    min-height: calc(100vh - 76px);
    background: #080806;
}

.brand-page-art {
    min-height: 680px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-page-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(42px, 5vw, 88px);
    background:
        radial-gradient(circle at 86% 16%, rgba(255,255,255,.06), transparent 29%),
        linear-gradient(135deg, #171714 0%, #080806 100%);
    border-left: 1px solid rgba(255,255,255,.10);
}

.brand-page-kicker {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255,255,255,.68);
}

.brand-page-panel h1 {
    margin: 0 0 24px;
    font-family: var(--font-head);
    font-size: clamp(46px, 6vw, 108px);
    letter-spacing: clamp(10px, 1.35vw, 24px);
    line-height: .92;
    text-transform: uppercase;
    font-weight: 900;
}

.brand-page-panel h2 {
    margin: 0 0 18px;
    max-width: 620px;
    font-family: var(--font-head);
    font-size: clamp(24px, 2.4vw, 42px);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-page-panel > p:not(.brand-page-kicker) {
    margin: 0 0 34px;
    max-width: 610px;
    color: rgba(255,255,255,.74);
    font-size: 16px;
    line-height: 1.8;
}

.brand-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.brand-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 28px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 10px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.9);
    transition: background .22s ease, color .22s ease;
}

.brand-page-button.primary {
    background: #fff;
    color: #080806;
}

.brand-page-button.secondary {
    color: #fff;
}

.brand-page-button.secondary:hover {
    background: #fff;
    color: #080806;
}

.brand-page-story {
    background: #fff;
    color: #111;
    text-align: center;
    padding: clamp(58px, 7vw, 110px) 24px;
}

.brand-page-story h2 {
    max-width: 960px;
    margin: 0 auto 18px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: clamp(4px, .65vw, 10px);
    font-size: clamp(28px, 4vw, 60px);
    line-height: 1.06;
}

.brand-page-story > p:not(.eyebrow) {
    max-width: 740px;
    margin: 0 auto;
    color: #4b4b4b;
    line-height: 1.85;
    font-size: 16px;
}

.brand-page-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.14);
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand-page-feature {
    background: #0d0d0b;
    padding: clamp(34px, 4vw, 64px);
}

.brand-page-feature span {
    display: block;
    margin: 0 0 28px;
    color: rgba(255,255,255,.38);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-page-feature h3 {
    margin: 0 0 14px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
}

.brand-page-feature p {
    margin: 0;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
}

.brand-page-product-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: #f5f3ee;
    color: #111;
    padding: clamp(44px, 5vw, 76px) clamp(24px, 6vw, 96px);
}

.brand-page-product-band h2 {
    margin: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: clamp(24px, 3vw, 44px);
}

.brand-page-flyway .brand-page-art {
    background-image: url('../images/flyway.jpg');
}

.brand-page-finway .brand-page-art {
    background-image: url('../images/finway.jpg');
}

.brand-page-fairway .brand-page-art {
    background-image: url('../images/fairway.jpg');
}

.brand-page-fieldway .brand-page-art {
    background-image: url('../images/fieldway.jpg');
}

@media (max-width: 980px) {
    .brand-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .brand-page-art {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .brand-page-panel {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.10);
        padding: 38px 28px 46px;
    }

    .brand-page-features {
        grid-template-columns: 1fr;
    }

    .brand-page-product-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .brand-page-panel h1 {
        font-size: 42px;
        letter-spacing: 8px;
    }

    .brand-page-panel h2 {
        font-size: 24px;
    }
}


/* v1.1.4 logo-enhanced landing pages */
.brand-page-logo {
    display: block;
    width: min(520px, 90%);
    max-height: 210px;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 28px;
    filter: drop-shadow(0 8px 28px rgba(0,0,0,.35));
}

.brand-page-panel h1.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 560px) {
    .brand-page-logo {
        width: min(390px, 94%);
        max-height: 170px;
        margin-bottom: 22px;
    }
}

/* v1.1.6 The Way Outdoors homepage simplification */
body {
    background: #050504;
}

.two-home-hero {
    position: relative;
    min-height: clamp(420px, 54vw, 760px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #050504;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.two-home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center center;
    transform: scale(1.015);
    filter: contrast(1.04) saturate(.9);
}

.two-home-hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.14), transparent 17%),
        linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.22), rgba(0,0,0,.56)),
        linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.44));
}

.two-home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
}

.two-home-logo {
    display: block;
    width: min(760px, 78vw);
    height: auto;
    filter: invert(1) drop-shadow(0 8px 24px rgba(0,0,0,.52));
}

.two-brand-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #050504;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.two-brand-card {
    position: relative;
    min-height: clamp(330px, 28vw, 520px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.12);
}

.two-brand-card:last-child {
    border-right: 0;
}

.two-brand-card-bg,
.two-brand-card-shade {
    position: absolute;
    inset: 0;
}

.two-brand-card-bg {
    background-size: cover;
    background-position: center center;
    transform: scale(1.01);
    filter: saturate(.86) contrast(1.08);
    transition: transform .7s ease, filter .7s ease;
}

.two-brand-card-shade {
    background:
        linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.16) 42%, rgba(0,0,0,.76) 100%),
        linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.02));
    transition: background .3s ease;
}

.two-brand-card:hover .two-brand-card-bg {
    transform: scale(1.055);
    filter: saturate(1.03) contrast(1.12);
}

.two-brand-card:hover .two-brand-card-shade {
    background:
        linear-gradient(180deg, rgba(0,0,0,.01) 0%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.64) 100%),
        linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.01));
}

.two-brand-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(28px, 3vw, 46px) 18px;
}

.two-brand-card-content p {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255,255,255,.72);
}

.two-brand-card-content h2 {
    margin: 0 0 22px;
    font-family: var(--font-head);
    font-size: clamp(22px, 2.15vw, 38px);
    line-height: 1;
    letter-spacing: clamp(4px, .45vw, 9px);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 8px 30px rgba(0,0,0,.65);
}

.two-brand-card-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.88);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 900;
    transition: background .22s ease, color .22s ease;
}

.two-brand-card:hover .two-brand-card-content span {
    background: #fff;
    color: #080806;
}

.site-footer h2 {
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .two-brand-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-brand-card:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 560px) {
    .two-home-hero {
        min-height: 420px;
    }

    .two-home-logo {
        width: min(520px, 86vw);
    }

    .two-brand-row {
        grid-template-columns: 1fr;
    }

    .two-brand-card {
        min-height: 310px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .two-brand-card:last-child {
        border-bottom: 0;
    }
}

.two-header-logo {
    display: block;
    width: min(360px, 42vw);
    max-height: 34px;
    object-fit: contain;
}

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

.custom-logo-link img,
.custom-logo {
    max-height: 42px;
    width: auto;
}


/* v1.1.7 luxury homepage spacing + corrected logo/card presentation */
.header-inner {
    height: 82px;
    max-width: 1560px;
    padding: 0 clamp(28px, 4vw, 64px);
}

.two-header-logo {
    display: block;
    width: clamp(300px, 27vw, 500px);
    max-height: 28px;
    object-fit: contain;
}

.brand-logo {
    min-width: clamp(300px, 27vw, 500px);
}

.two-home-hero {
    min-height: clamp(500px, 55vw, 790px);
    margin-bottom: 18px;
    border-bottom: 0;
}

.two-home-logo {
    width: min(860px, 62vw);
    filter: invert(1) drop-shadow(0 10px 28px rgba(0,0,0,.52));
}

.two-brand-row {
    gap: clamp(14px, 1.2vw, 22px);
    padding: clamp(16px, 1.5vw, 26px);
    background: #050504;
    border-top: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.two-brand-card {
    min-height: clamp(360px, 28vw, 520px);
    border-right: 0;
    border-radius: 0;
    background: #080806;
}

.two-brand-card-bg {
    transform: scale(1);
    background-position: center center;
}

.two-brand-card-shade {
    background:
        linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.08) 46%, rgba(0,0,0,.42) 100%),
        linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.02));
}

.two-brand-card:hover .two-brand-card-shade {
    background:
        linear-gradient(180deg, rgba(0,0,0,.01) 0%, rgba(0,0,0,.05) 46%, rgba(0,0,0,.34) 100%),
        linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.01));
}

.two-brand-card-content {
    width: 100%;
    padding: 0 18px clamp(34px, 3vw, 52px);
    text-align: center;
}

.two-brand-card-content p,
.two-brand-card-content h2 {
    display: none;
}

.two-brand-card-content span {
    min-height: 38px;
    padding: 0 24px;
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(4px);
}

@media (max-width: 980px) {
    .brand-logo,
    .two-header-logo {
        min-width: 0;
        width: clamp(220px, 34vw, 360px);
    }

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

@media (max-width: 720px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .brand-logo,
    .two-header-logo {
        width: min(260px, 62vw);
    }

    .two-home-logo {
        width: min(620px, 82vw);
    }
}

@media (max-width: 560px) {
    .two-home-hero {
        min-height: 430px;
        margin-bottom: 14px;
    }

    .two-brand-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
    }

    .two-brand-card {
        min-height: 340px;
        border-bottom: 0;
    }
}

/* v1.1.8 configured editorial homepage cards */
.two-home-hero {
    min-height: clamp(500px, 49vw, 760px);
    margin-bottom: 0;
    border-bottom: 0;
}

.two-home-logo {
    width: min(860px, 62vw);
}

.two-brand-suite {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.045), transparent 26%),
        #050504;
    color: #fff;
    padding: clamp(54px, 5vw, 86px) clamp(22px, 3vw, 48px) clamp(62px, 6vw, 104px);
}

.two-suite-heading {
    max-width: 980px;
    margin: 0 auto clamp(30px, 4vw, 56px);
    text-align: center;
}

.two-suite-heading p {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 3.8px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255,255,255,.58);
}

.two-suite-heading h2 {
    margin: 0;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: clamp(6px, .78vw, 12px);
    font-size: clamp(30px, 3.3vw, 54px);
    line-height: 1.05;
}

.two-brand-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 30px);
    max-width: 1460px;
    margin: 0 auto;
}

.two-brand-editorial-card {
    --photo-size: clamp(250px, 17vw, 340px);
    display: grid;
    grid-template-columns: var(--photo-size) minmax(0, 1fr);
    min-height: var(--photo-size);
    background: #10100e;
    border: 1px solid rgba(255,255,255,.10);
    overflow: hidden;
    box-shadow: 0 32px 82px rgba(0,0,0,.26);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.two-brand-editorial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 42px 106px rgba(0,0,0,.36);
}

.two-brand-editorial-photo {
    width: var(--photo-size);
    height: var(--photo-size);
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(.92) contrast(1.06);
    transition: transform .65s ease, filter .65s ease;
}

.two-brand-editorial-card:hover .two-brand-editorial-photo {
    transform: scale(1.018);
    filter: saturate(1.03) contrast(1.1);
}

.two-brand-editorial-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(26px, 3vw, 48px);
    background:
        radial-gradient(circle at 88% 14%, rgba(255,255,255,.06), transparent 30%),
        linear-gradient(135deg, #171714 0%, #090907 100%);
}

.two-brand-kicker {
    margin: 0 0 13px;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    font-size: 10.5px;
    font-weight: 900;
    color: rgba(255,255,255,.64);
}

.two-brand-editorial-info h3 {
    margin: 0 0 17px;
    font-family: var(--font-head);
    font-size: clamp(28px, 2.6vw, 46px);
    letter-spacing: clamp(7px, .68vw, 12px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.two-brand-copy {
    margin: 0 0 26px;
    max-width: 430px;
    color: rgba(255,255,255,.72);
    line-height: 1.68;
    font-size: 13.5px;
}

.two-brand-editorial-info span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 28px;
    border: 1px solid rgba(255,255,255,.88);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 900;
    transition: background .22s ease, color .22s ease;
}

.two-brand-editorial-card:hover .two-brand-editorial-info span {
    background: #fff;
    color: #090907;
}

/* retire the one-line card row from v1.1.7 when templates/plugins cache old markup */
.two-brand-row {
    display: none !important;
}

@media (max-width: 1240px) {
    .two-brand-editorial-grid {
        grid-template-columns: 1fr;
        max-width: 920px;
    }

    .two-brand-editorial-card {
        --photo-size: clamp(280px, 36vw, 390px);
    }
}

@media (max-width: 760px) {
    .two-brand-suite {
        padding-left: 14px;
        padding-right: 14px;
    }

    .two-brand-editorial-card {
        --photo-size: 100%;
        grid-template-columns: 1fr;
    }

    .two-brand-editorial-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .two-brand-editorial-info {
        padding: 28px 24px 34px;
    }

    .two-brand-editorial-info h3 {
        font-size: 32px;
        letter-spacing: 7px;
    }
}


/* v1.1.9 desktop one-row editorial brand suite */
.two-brand-suite {
    padding-top: clamp(58px, 5vw, 96px);
}

.two-brand-editorial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.25vw, 26px);
    max-width: 2400px;
    width: min(96vw, 2400px);
}

.two-brand-editorial-card {
    --photo-size: clamp(150px, 10.4vw, 245px);
    grid-template-columns: var(--photo-size) minmax(0, 1fr);
    min-height: var(--photo-size);
}

.two-brand-editorial-photo {
    background-size: contain;
    background-color: #050504;
    background-position: center center;
}

.two-brand-editorial-info {
    padding: clamp(18px, 1.45vw, 34px);
}

.two-brand-kicker {
    margin-bottom: 10px;
    letter-spacing: 2.8px;
    font-size: clamp(8px, .46vw, 10px);
}

.two-brand-editorial-info h3 {
    font-size: clamp(20px, 1.55vw, 34px);
    letter-spacing: clamp(4px, .42vw, 9px);
    margin-bottom: 12px;
    white-space: nowrap;
}

.two-brand-copy {
    font-size: clamp(11px, .65vw, 13px);
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 310px;
}

.two-brand-editorial-info span {
    min-height: 36px;
    padding: 0 22px;
    font-size: 9px;
}

@media (max-width: 1700px) {
    .two-brand-editorial-grid {
        width: min(98vw, 1700px);
        gap: 14px;
    }

    .two-brand-editorial-card {
        --photo-size: clamp(132px, 9vw, 175px);
    }

    .two-brand-editorial-info {
        padding: 18px;
    }

    .two-brand-copy {
        font-size: 11px;
        line-height: 1.45;
    }
}

@media (max-width: 1280px) {
    .two-brand-editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(94vw, 980px);
    }

    .two-brand-editorial-card {
        --photo-size: clamp(210px, 24vw, 300px);
    }
}

@media (max-width: 760px) {
    .two-brand-editorial-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* v1.2.0 professional responsive homepage correction
   Fixes: hero crop on different monitors + card row squishing on narrower desktop screens. */
.two-home-hero {
    min-height: unset;
    height: clamp(500px, 42vw, 720px);
    margin-bottom: 0;
    overflow: hidden;
}

.two-home-hero-bg {
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center center;
    transform: none;
    filter: contrast(1.02) saturate(.92);
}

.two-home-hero-shade {
    background:
        radial-gradient(circle at 50% 47%, rgba(255,255,255,.10), transparent 18%),
        linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.16) 45%, rgba(0,0,0,.34)),
        linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.42));
}

.two-home-logo {
    width: clamp(520px, 38vw, 880px);
}

.two-brand-suite {
    padding-top: clamp(58px, 4.4vw, 82px);
    padding-left: clamp(24px, 2.8vw, 58px);
    padding-right: clamp(24px, 2.8vw, 58px);
}

.two-suite-heading {
    margin-bottom: clamp(34px, 3.4vw, 54px);
}

/* Keep the four brands side-by-side on desktop, but stop them from compressing.
   If a monitor is too narrow, the row scrolls horizontally instead of smashing the cards. */
.two-brand-editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(420px, 1fr));
    gap: clamp(18px, 1.4vw, 28px);
    max-width: 2260px;
    width: min(96vw, 2260px);
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 0 20px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.two-brand-editorial-grid::-webkit-scrollbar {
    height: 8px;
}

.two-brand-editorial-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,.06);
}

.two-brand-editorial-grid::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.22);
}

.two-brand-editorial-card {
    --photo-size: clamp(175px, 10.2vw, 245px);
    grid-template-columns: var(--photo-size) minmax(220px, 1fr);
    min-width: 420px;
    scroll-snap-align: start;
}

.two-brand-editorial-photo {
    background-size: contain;
    background-color: #050504;
    background-position: center center;
}

.two-brand-editorial-info {
    padding: clamp(22px, 1.55vw, 36px);
}

.two-brand-editorial-info h3 {
    white-space: nowrap;
    font-size: clamp(24px, 1.45vw, 36px);
    letter-spacing: clamp(5px, .36vw, 9px);
}

.two-brand-copy {
    max-width: 330px;
    font-size: clamp(12px, .62vw, 13.5px);
    line-height: 1.58;
}

@media (max-width: 1700px) {
    .two-brand-editorial-grid {
        grid-template-columns: repeat(4, minmax(390px, 1fr));
        width: 96vw;
    }

    .two-brand-editorial-card {
        --photo-size: 165px;
        min-width: 390px;
    }

    .two-brand-editorial-info {
        padding: 22px;
    }
}

@media (max-width: 1280px) {
    .two-home-hero {
        height: clamp(470px, 48vw, 650px);
    }

    .two-brand-editorial-grid {
        grid-template-columns: repeat(4, minmax(370px, 1fr));
        width: calc(100vw - 28px);
    }

    .two-brand-editorial-card {
        --photo-size: 158px;
        min-width: 370px;
    }
}

@media (max-width: 760px) {
    .two-home-hero {
        height: 460px;
    }

    .two-home-hero-bg {
        background-position: 34% center;
    }

    .two-home-logo {
        width: min(620px, 84vw);
    }

    .two-brand-suite {
        padding-left: 14px;
        padding-right: 14px;
    }

    .two-brand-editorial-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
        width: 100%;
        padding-bottom: 0;
    }

    .two-brand-editorial-card {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .two-brand-editorial-photo {
        width: 100%;
        aspect-ratio: 1 / 1;
    }
}

/* =========================================================
   v1.2.1 — Premium Shop Pages
   ========================================================= */
.two-shop-page {
  background: #050505;
  color: #f5f2ec;
  margin: 0;
  font-family: inherit;
}

.two-shop-hero {
  position: relative;
  min-height: clamp(520px, 64vh, 760px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.two-shop-hero-bg,
.two-brand-shop-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  z-index: -3;
}

.two-shop-hero-bg {
  background-image: url('../images/hero-banner.jpg');
}

.two-shop-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.06), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.72)),
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.26), rgba(0,0,0,.68));
  z-index: -2;
}

.two-shop-hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  padding: 110px 0 78px;
}

.two-shop-eyebrow,
.two-shop-section-heading p,
.two-shop-brand-tile-copy p,
.two-shop-cta-band p {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
  color: rgba(255,255,255,.72);
}

.two-shop-eyebrow.dark {
  color: rgba(5,5,5,.62);
}

.two-shop-hero h1 {
  margin: 0 auto 22px;
  max-width: 920px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(38px, 6vw, 92px);
  line-height: .96;
  color: #fff;
  text-shadow: 0 28px 70px rgba(0,0,0,.55);
}

.two-shop-hero-inner > p:not(.two-shop-eyebrow) {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.8;
}

.two-shop-brand-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.two-shop-brand-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .22s ease;
}

.two-shop-brand-nav a:hover,
.two-shop-brand-nav a.is-active {
  color: #050505;
  background: #f5f2ec;
  border-color: #f5f2ec;
}

.two-shop-brand-gateway,
.two-shop-products,
.two-brand-shop-intro,
.two-shop-category-strip,
.two-shop-cta-band {
  width: min(1840px, calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
}

.two-shop-brand-gateway {
  padding: clamp(56px, 7vw, 110px) 0 32px;
}

.two-shop-section-heading {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 36px;
}

.two-shop-section-heading h2,
.two-brand-shop-intro h2,
.two-shop-cta-band h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.02;
  color: #fff;
}

.two-shop-products-heading span,
.two-brand-shop-intro > p,
.two-shop-cta-band span {
  display: block;
  margin: 18px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,.64);
  line-height: 1.75;
  font-size: 15px;
}

.two-shop-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 18px;
}

.two-shop-brand-tile {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.two-shop-brand-tile-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.two-shop-brand-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.38) 45%, rgba(0,0,0,.86));
}

.two-shop-brand-tile:hover .two-shop-brand-tile-art {
  transform: scale(1.045);
  filter: brightness(1.08);
}

.two-shop-brand-tile-copy {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.two-shop-brand-tile-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 54px);
  letter-spacing: .20em;
  line-height: 1;
  color: #fff;
}

.two-shop-brand-tile-copy span {
  display: block;
  max-width: 330px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.two-shop-brand-tile em {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
  margin: 0 34px 34px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.66);
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 900;
}

.two-shop-category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 22px 0 clamp(54px, 7vw, 100px);
}

.two-shop-category-strip a {
  min-height: 142px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  transition: .22s ease;
}

.two-shop-category-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.32);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}

.two-shop-category-strip strong {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.two-shop-category-strip span {
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  font-size: 13px;
}

.two-shop-products {
  padding: 0 0 clamp(70px, 9vw, 130px);
}

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

.two-product-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.two-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.34);
  background: #121212;
}

.two-product-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.two-product-image {
  aspect-ratio: 4 / 5;
  background: #171717;
  overflow: hidden;
}

.two-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-product-placeholder-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.018)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 14px),
    #151515;
}

.two-product-placeholder-image span {
  color: rgba(255,255,255,.32);
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 900;
}

.two-product-placeholder-image strong {
  max-width: 80%;
  text-align: center;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 13px;
  line-height: 1.7;
}

.two-product-meta {
  padding: 18px 18px 20px;
}

.two-product-meta p {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 10px;
  color: rgba(255,255,255,.48);
  font-weight: 900;
}

.two-product-meta h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
  line-height: 1.4;
}

.two-product-meta small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.56);
  line-height: 1.55;
}

.two-brand-shop-hero {
  min-height: clamp(620px, 72vh, 820px);
}

.two-brand-shop-hero-inner {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.two-brand-shop-logo {
  width: min(440px, 72vw);
  height: auto;
  object-fit: contain;
  margin: 0 0 26px;
  filter: drop-shadow(0 22px 54px rgba(0,0,0,.55));
}

.two-brand-shop-hero-inner h1 {
  margin-left: 0;
  max-width: 900px;
}

.two-brand-shop-hero-inner > p:not(.two-shop-eyebrow) {
  margin-left: 0;
  max-width: 640px;
}

.two-brand-shop-hero-inner .two-shop-brand-nav {
  justify-content: flex-start;
}

.two-brand-shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  padding: clamp(58px, 7vw, 110px) 0 34px;
}

.two-brand-shop-intro h2 {
  color: #fff;
}

.two-brand-shop-intro > p {
  margin: 0;
  max-width: 590px;
}

.two-shop-cta-band {
  margin-bottom: clamp(70px, 8vw, 120px);
  padding: clamp(32px, 5vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
}

.two-shop-cta-band h2 {
  font-size: clamp(26px, 3vw, 46px);
}

.two-shop-cta-band span {
  margin-left: 0;
}

.two-shop-cta-band a {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.72);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 1500px) {
  .two-shop-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-shop-brand-tile {
    min-height: 460px;
  }

  .two-shop-category-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1180px) {
  .two-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-brand-shop-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .two-shop-hero-inner,
  .two-shop-brand-gateway,
  .two-shop-products,
  .two-brand-shop-intro,
  .two-shop-category-strip,
  .two-shop-cta-band {
    width: min(100% - 32px, 760px);
  }

  .two-shop-brand-grid,
  .two-product-grid,
  .two-shop-category-strip {
    grid-template-columns: 1fr;
  }

  .two-shop-brand-tile {
    min-height: 420px;
  }

  .two-shop-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .two-shop-hero {
    min-height: 560px;
  }

  .two-shop-hero-inner {
    text-align: left;
    padding: 84px 0 54px;
  }

  .two-shop-brand-nav {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .two-shop-brand-nav a {
    flex: 0 0 auto;
  }

  .two-shop-section-heading {
    text-align: left;
  }

  .two-shop-brand-tile-copy,
  .two-shop-brand-tile em {
    margin-left: 24px;
    margin-right: 24px;
  }

  .two-shop-brand-tile-copy {
    padding: 28px 0 0;
  }

  .two-shop-brand-tile-copy h3 {
    font-size: 34px;
  }
}

/* =========================================================
   v1.2.2 — Connected Brand Landing + Storefront Flow
   Makes brand pages feel like real shops, not dead-end landing pages.
   ========================================================= */
.two-connected-brand {
  background: #050505;
  color: #f5f2ec;
  overflow: hidden;
}

.two-connected-hero {
  position: relative;
  min-height: clamp(620px, 76vh, 880px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.two-connected-hero-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -3;
}

.two-connected-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 30% 45%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.44) 46%, rgba(0,0,0,.72)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.88));
}

.two-connected-hero-inner {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  padding: 112px 0 92px;
}

.two-connected-hero-inner img {
  width: min(470px, 72vw);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 0 34px;
  filter: drop-shadow(0 28px 70px rgba(0,0,0,.7));
}

.two-connected-hero-inner h1 {
  max-width: 880px;
  margin: 0 0 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(36px, 5.7vw, 92px);
  line-height: .98;
}

.two-connected-hero-inner > p:not(.two-shop-eyebrow) {
  max-width: 670px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.8;
}

.two-connected-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.two-connected-actions a,
.two-connected-cross-grid a,
.two-connected-category-grid em {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.66);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 900;
  transition: .22s ease;
}

.two-connected-actions a:first-child,
.two-connected-actions a:hover,
.two-connected-cross-grid a:hover,
.two-connected-category-grid a:hover em {
  background: #f5f2ec;
  color: #050505;
  border-color: #f5f2ec;
}

.two-connected-actions a:first-child:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.66);
}

.two-connected-toolbar,
.two-connected-categories,
.two-connected-kits,
.two-connected-products,
.two-connected-cross-sell {
  width: min(1840px, calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}

.two-connected-toolbar {
  margin-top: -44px;
  position: relative;
  z-index: 5;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 80px rgba(0,0,0,.32);
}

.two-connected-toolbar strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 14px;
}

.two-connected-toolbar span {
  display: block;
  max-width: 650px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  font-size: 14px;
}

.two-connected-categories {
  padding: clamp(78px, 8vw, 130px) 0 clamp(46px, 5vw, 72px);
}

.two-connected-heading {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.two-connected-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.two-connected-heading p,
.two-connected-cross-sell p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
  letter-spacing: .36em;
  font-size: 11px;
  font-weight: 900;
}

.two-connected-heading h2,
.two-connected-cross-sell h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(30px, 4.4vw, 68px);
  line-height: 1;
}

.two-connected-heading span {
  display: block;
  margin: 18px auto 0;
  max-width: 720px;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  font-size: 15px;
}

.two-connected-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.two-connected-category-grid a {
  min-height: 210px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.016)),
    #0d0d0d;
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.two-connected-category-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.3);
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.025)),
    #111;
}

.two-connected-category-grid strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
}

.two-connected-category-grid span {
  color: rgba(255,255,255,.58);
  line-height: 1.6;
  font-size: 13px;
}

.two-connected-category-grid em {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 15px;
  font-style: normal;
  font-size: 10px;
}

.two-connected-kits {
  padding: clamp(28px, 5vw, 70px) 0 clamp(54px, 7vw, 106px);
}

.two-connected-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.two-connected-kit-grid article {
  min-height: 280px;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.09), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #090909;
}

.two-connected-kit-grid article > span {
  color: rgba(255,255,255,.28);
  letter-spacing: .28em;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: auto;
}

.two-connected-kit-grid h3 {
  margin: 30px 0 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.08;
}

.two-connected-kit-grid strong {
  color: rgba(255,255,255,.74);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.two-connected-kit-grid p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
}

.two-connected-products {
  padding: 0 0 clamp(62px, 8vw, 120px);
}

.two-connected-cross-sell {
  margin-bottom: clamp(72px, 8vw, 130px);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.016));
}

.two-connected-cross-sell h2 {
  font-size: clamp(26px, 3.1vw, 48px);
}

.two-connected-cross-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.two-connected-cross-grid a {
  min-height: 104px;
  padding: 18px;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

.two-connected-cross-grid a span {
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 900;
}

.two-connected-cross-grid a strong {
  letter-spacing: .18em;
}

@media (max-width: 1500px) {
  .two-connected-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .two-connected-toolbar,
  .two-connected-cross-sell {
    grid-template-columns: 1fr;
  }

  .two-connected-toolbar .two-shop-brand-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .two-connected-kit-grid,
  .two-connected-cross-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .two-connected-hero-inner,
  .two-connected-toolbar,
  .two-connected-categories,
  .two-connected-kits,
  .two-connected-products,
  .two-connected-cross-sell {
    width: min(100% - 32px, 720px);
  }

  .two-connected-hero {
    min-height: 640px;
  }

  .two-connected-hero-inner h1 {
    font-size: clamp(32px, 12vw, 54px);
  }

  .two-connected-category-grid {
    grid-template-columns: 1fr;
  }

  .two-connected-category-grid a {
    min-height: 170px;
  }
}

/* =========================================================
   v1.2.3 — Cleaner Brand Storefronts + Real Category Filters
   Replaces the messy landing-page feel with a proper shop layout.
   ========================================================= */
.two-brand-shop {
  background: #050505;
  color: #f5f2ec;
  overflow: hidden;
}

.two-brand-shop-hero {
  position: relative;
  min-height: clamp(500px, 62vh, 720px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.two-brand-shop-hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.two-brand-shop-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.48) 46%, rgba(0,0,0,.76)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82));
}

.two-brand-shop-hero-inner {
  width: min(1360px, calc(100% - 72px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.two-brand-shop-kicker,
.two-storefront-filter-block p,
.two-storefront-header p,
.two-kit-shop-heading p,
.two-brand-cross-sell p,
.two-storefront-rail-card p {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,.58);
}

.two-brand-shop-hero-inner img {
  width: min(330px, 58vw);
  height: auto;
  display: block;
  margin: 0 0 26px;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.72));
}

.two-brand-shop-hero-inner h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 1;
}

.two-brand-shop-hero-inner > p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.76);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
}

.two-brand-shop-actions,
.two-storefront-mobile-filters,
.two-brand-cross-grid,
.two-shop-brand-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.two-brand-shop-actions a,
.two-brand-cross-grid a,
.two-kit-shop-grid a {
  min-height: 46px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.62);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 900;
  transition: .22s ease;
}

.two-brand-shop-actions a:first-child,
.two-brand-shop-actions a:hover,
.two-brand-cross-grid a:hover,
.two-kit-shop-grid a:hover {
  background: #f5f2ec;
  color: #050505;
  border-color: #f5f2ec;
}

.two-brand-switcher,
.two-storefront-shell,
.two-kit-shop-section,
.two-brand-cross-sell {
  width: min(1840px, calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
}

.two-brand-switcher {
  margin-top: -34px;
  position: relative;
  z-index: 4;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}

.two-storefront-shell {
  padding: clamp(62px, 7vw, 108px) 0 clamp(42px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}

.two-storefront-rail {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.two-storefront-rail-card,
.two-storefront-filter-block,
.two-storefront-note,
.two-storefront-header,
.two-kit-shop-grid article,
.two-brand-cross-sell {
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.018)), #0b0b0b;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.two-storefront-rail-card,
.two-storefront-filter-block,
.two-storefront-note {
  padding: 22px;
}

.two-storefront-rail-card h2,
.two-storefront-header h2,
.two-kit-shop-heading h2,
.two-brand-cross-sell h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .14em;
  line-height: 1.05;
}

.two-storefront-rail-card h2 {
  font-size: 28px;
}

.two-storefront-rail-card span,
.two-storefront-note span,
.two-kit-shop-heading span,
.two-kit-shop-grid p,
.two-brand-cross-grid a span {
  display: block;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  font-size: 13px;
}

.two-storefront-filter-block {
  display: grid;
  gap: 8px;
}

.two-storefront-filter-block a,
.two-storefront-mobile-filters a {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.76);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 900;
  transition: .2s ease;
}

.two-storefront-filter-block a:hover,
.two-storefront-filter-block a.is-active,
.two-storefront-mobile-filters a:hover,
.two-storefront-mobile-filters a.is-active {
  background: #f5f2ec;
  color: #050505;
  border-color: #f5f2ec;
}

.two-storefront-note strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
}

.two-storefront-header {
  margin-bottom: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.two-storefront-header h2 {
  font-size: clamp(28px, 3.4vw, 52px);
}

.two-storefront-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.two-storefront-tools span {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 900;
}

.two-storefront-mobile-filters {
  display: none;
  margin: 0 0 18px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 6px;
}

.two-storefront-mobile-filters a {
  white-space: nowrap;
}

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

.two-kit-shop-section {
  padding: 0 0 clamp(56px, 6vw, 94px);
}

.two-kit-shop-heading {
  max-width: 880px;
  margin: 0 0 26px;
}

.two-kit-shop-heading h2 {
  font-size: clamp(28px, 3.6vw, 56px);
}

.two-kit-shop-heading span {
  margin-top: 14px;
  max-width: 650px;
}

.two-kit-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.two-kit-shop-grid article {
  min-height: 280px;
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.two-kit-shop-grid article > span {
  margin-bottom: auto;
  color: rgba(255,255,255,.28);
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 900;
}

.two-kit-shop-grid h3 {
  margin: 32px 0 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
}

.two-kit-shop-grid strong {
  color: rgba(255,255,255,.74);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
}

.two-kit-shop-grid a {
  align-self: flex-start;
  margin-top: 18px;
}

.two-brand-cross-sell {
  margin-bottom: clamp(70px, 8vw, 128px);
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 24px;
}

.two-brand-cross-sell h2 {
  font-size: clamp(26px, 3vw, 46px);
}

.two-brand-cross-grid {
  justify-content: flex-end;
}

.two-brand-cross-grid a {
  min-width: 180px;
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.two-brand-cross-grid a strong {
  letter-spacing: .18em;
}

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

@media (max-width: 1180px) {
  .two-storefront-shell,
  .two-brand-cross-sell {
    grid-template-columns: 1fr;
  }

  .two-storefront-rail {
    position: static;
  }

  .two-storefront-filter-block {
    display: none;
  }

  .two-storefront-mobile-filters {
    display: flex;
  }

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

  .two-kit-shop-grid {
    grid-template-columns: 1fr;
  }

  .two-brand-cross-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .two-brand-shop-hero-inner,
  .two-brand-switcher,
  .two-storefront-shell,
  .two-kit-shop-section,
  .two-brand-cross-sell {
    width: min(100% - 32px, 720px);
  }

  .two-brand-shop-hero {
    min-height: 560px;
  }

  .two-brand-shop-hero-inner {
    padding: 68px 0 54px;
  }

  .two-storefront-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-storefront-tools {
    justify-content: flex-start;
  }

  .two-storefront-product-grid.two-product-grid {
    grid-template-columns: 1fr;
  }
}

/* v1.2.4 — Hero CTA + connected WooCommerce buying flow */
.two-home-hero-content {
  flex-direction: column;
  gap: 26px;
}

.two-hero-shop-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
  transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}

.two-hero-shop-all:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.94);
  color: #050504;
  border-color: rgba(255,255,255,1);
}

.two-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 18px 18px;
  align-items: center;
}

.two-product-actions a,
.two-product-actions .button,
.two-product-actions .added_to_cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  border-radius: 0;
  padding: 0 14px;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.two-product-actions .two-add-to-cart-button {
  background: #fff;
  color: #050504;
  border-color: #fff;
}

.two-product-actions .two-add-to-cart-button:hover,
.two-product-actions .two-view-product-button:hover,
.two-product-actions .added_to_cart:hover {
  transform: translateY(-1px);
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.72);
}

.two-product-actions .two-add-to-cart-button.is-disabled {
  opacity: .72;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.22);
}

.two-product-actions .added_to_cart {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.two-cart-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  margin: 0 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.two-cart-status-strip p {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  color: rgba(255,255,255,.46);
  font-weight: 900;
}

.two-cart-status-strip strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}

.two-cart-status-strip nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.two-cart-status-strip nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 900;
}

.two-cart-status-strip nav a:last-child {
  background: #fff;
  color: #050504;
  border-color: #fff;
}

.two-commerce-page {
  background: #050504;
  color: #fff;
  min-height: 70vh;
}

.two-commerce-hero {
  padding: clamp(64px, 9vw, 140px) clamp(22px, 5vw, 90px) clamp(34px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 24% 10%, rgba(255,255,255,.11), transparent 23%),
    linear-gradient(135deg, #10100f, #050504 62%);
}

.two-commerce-hero p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 11px;
  font-weight: 900;
}

.two-commerce-hero h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(40px, 6vw, 92px);
  line-height: .94;
}

.two-commerce-hero span {
  display: block;
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  line-height: 1.8;
}

.two-commerce-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 74px) 22px clamp(60px, 7vw, 110px);
}

.two-commerce-shell .woocommerce,
.two-commerce-shell .woocommerce-cart-form,
.two-commerce-shell .cart-collaterals,
.two-commerce-shell form.checkout,
.two-commerce-shell .woocommerce-MyAccount-navigation,
.two-commerce-shell .woocommerce-MyAccount-content {
  color: #fff;
}

.two-commerce-shell table.shop_table,
.two-commerce-shell .cart_totals,
.two-commerce-shell .woocommerce-checkout-review-order,
.two-commerce-shell .woocommerce-billing-fields,
.two-commerce-shell .woocommerce-shipping-fields,
.two-commerce-shell .woocommerce-additional-fields,
.two-commerce-shell .woocommerce-MyAccount-navigation,
.two-commerce-shell .woocommerce-MyAccount-content {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 0;
}

.two-commerce-shell table.shop_table th,
.two-commerce-shell table.shop_table td,
.two-commerce-shell .cart_totals h2,
.two-commerce-shell h3 {
  color: #fff;
  border-color: rgba(255,255,255,.12) !important;
}

.two-commerce-shell a {
  color: #fff;
}

.two-commerce-shell .button,
.two-commerce-shell button.button,
.two-commerce-shell input.button,
.two-commerce-shell #place_order {
  background: #fff !important;
  color: #050504 !important;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
  padding: 14px 18px !important;
}

.two-commerce-shell input,
.two-commerce-shell select,
.two-commerce-shell textarea {
  background: #050504 !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 0 !important;
}

@media (max-width: 720px) {
  .two-cart-status-strip,
  .two-product-actions {
    grid-template-columns: 1fr;
  }

  .two-cart-status-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-cart-status-strip nav {
    width: 100%;
    justify-content: flex-start;
  }

  .two-cart-status-strip nav a {
    flex: 1;
  }
}

/* v1.2.5 — real storefront/cart pass */
.two-all-storefront-page .two-master-shop-hero {
  min-height: clamp(420px, 46vw, 680px);
}

.two-all-storefront-shell {
  padding-top: clamp(46px, 5vw, 84px);
}

.two-brand-filter-block a {
  text-transform: uppercase;
  letter-spacing: .16em;
}

.two-product-card .added_to_cart.wc-forward {
  text-align: center;
}

.two-product-actions .loading {
  opacity: .66;
  pointer-events: none;
}

.two-product-actions .added::after {
  content: " ✓";
}

@media (max-width: 780px) {
  .two-storefront-tools {
    display: none;
  }
}


/* v1.2.6 — premium WooCommerce product/cart/checkout polish */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: #0d0d0d;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-top: 2px solid #fff;
  border-radius: 0;
  padding: 18px 22px;
  letter-spacing: .02em;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #fff;
}

.two-commerce-intro-row,
.two-product-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.two-commerce-intro-row a,
.two-product-topline a,
.two-continue-shopping {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 5px;
  font-weight: 800;
}

.two-product-detail-shell .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.two-product-detail-shell .woocommerce div.product div.images,
.two-product-detail-shell .woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
}

.two-product-detail-shell .woocommerce div.product div.images {
  background: radial-gradient(circle at top, rgba(255,255,255,.09), rgba(255,255,255,.02) 48%, rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  min-height: clamp(420px, 46vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 44px);
}

.two-product-detail-shell .woocommerce div.product div.images img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.two-product-detail-shell .woocommerce div.product div.summary {
  background: rgba(13,13,13,.92);
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(24px, 4vw, 46px);
  position: sticky;
  top: 104px;
}

.two-product-detail-shell .product_title {
  font-size: clamp(34px, 5vw, 68px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #fff;
}

.two-product-detail-shell .price {
  color: #fff !important;
  font-size: clamp(22px, 2.4vw, 34px) !important;
  font-weight: 900;
  margin: 0 0 24px !important;
}

.two-product-detail-shell .woocommerce-product-details__short-description,
.two-product-detail-shell .woocommerce-product-details__short-description p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  font-size: 15px;
}

.two-product-detail-shell form.cart {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  margin-top: 28px !important;
  margin-bottom: 26px !important;
}

.two-product-detail-shell .quantity input.qty,
.two-commerce-shell .quantity input.qty {
  width: 100% !important;
  min-height: 54px;
  text-align: center;
  font-weight: 900;
}

.two-product-detail-shell .single_add_to_cart_button {
  width: 100%;
  min-height: 54px;
}

.two-product-detail-shell .product_meta {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.two-product-detail-shell .product_meta a {
  color: #fff;
  text-decoration: none;
}

.two-product-detail-shell .woocommerce-tabs,
.two-product-detail-shell .related.products,
.two-product-assurance-grid {
  grid-column: 1 / -1;
}

.two-product-detail-shell .woocommerce-tabs {
  margin-top: clamp(28px, 5vw, 64px);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(20px, 3vw, 36px);
}

.two-product-detail-shell .woocommerce-tabs ul.tabs {
  margin: 0 0 26px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.two-product-detail-shell .woocommerce-tabs ul.tabs::before,
.two-product-detail-shell .woocommerce-tabs ul.tabs li::before,
.two-product-detail-shell .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.two-product-detail-shell .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 22px 14px 0 !important;
  margin: 0 !important;
}

.two-product-detail-shell .woocommerce-tabs ul.tabs li a {
  color: rgba(255,255,255,.58) !important;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

.two-product-detail-shell .woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
}

.two-product-detail-shell .woocommerce-Tabs-panel,
.two-product-detail-shell .woocommerce-Tabs-panel p,
.two-product-detail-shell .woocommerce-Tabs-panel table {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

.two-product-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: clamp(24px, 4vw, 50px) 0;
}

.two-product-assurance-grid article {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14);
  padding: 22px;
}

.two-product-assurance-grid strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  margin-bottom: 9px;
}

.two-product-assurance-grid span {
  color: rgba(255,255,255,.64);
  line-height: 1.7;
  font-size: 13px;
}

.two-product-detail-shell .related.products > h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-size: clamp(28px, 4vw, 52px);
}

.two-product-detail-shell ul.products li.product,
.two-commerce-shell ul.products li.product {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px !important;
  text-align: left;
}

.two-product-detail-shell ul.products li.product a img,
.two-commerce-shell ul.products li.product a img {
  background: rgba(255,255,255,.04);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.two-product-detail-shell ul.products li.product .woocommerce-loop-product__title,
.two-commerce-shell ul.products li.product .woocommerce-loop-product__title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: 16px;
}

.two-commerce-shell table.shop_table {
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.two-commerce-shell table.shop_table thead th {
  background: rgba(255,255,255,.06);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  padding: 18px !important;
}

.two-commerce-shell table.shop_table td {
  padding: 18px !important;
  vertical-align: middle;
}

.two-commerce-shell table.shop_table .product-name a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.two-commerce-shell table.shop_table .product-thumbnail img {
  width: 84px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}

.two-cart-shell .woocommerce-cart-form {
  width: min(100%, 770px);
  float: left;
}

.two-cart-shell .cart-collaterals {
  width: min(100%, 390px);
  float: right;
}

.two-cart-shell .cart-collaterals .cart_totals {
  width: 100% !important;
  float: none !important;
  padding: 24px;
  position: sticky;
  top: 104px;
}

.two-cart-shell .cart-collaterals .cart_totals h2,
.two-checkout-shell #order_review_heading {
  text-transform: uppercase;
  letter-spacing: -.035em;
  font-size: clamp(24px, 3vw, 38px);
  margin: 0 0 18px;
}

.two-cart-shell .coupon {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.two-cart-shell .coupon input.input-text {
  min-width: 180px !important;
  width: 100% !important;
  min-height: 48px;
}

.two-cart-shell .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  padding: 18px !important;
  font-size: 12px !important;
}

.two-checkout-shell form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(22px, 4vw, 50px);
  align-items: start;
  background: transparent !important;
  border: 0 !important;
}

.two-checkout-shell .col2-set {
  width: auto !important;
  float: none !important;
}

.two-checkout-shell .col2-set .col-1,
.two-checkout-shell .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  margin-bottom: 18px;
}

.two-checkout-shell #order_review_heading,
.two-checkout-shell #order_review {
  grid-column: 2;
}

.two-checkout-shell #order_review {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14);
  padding: 22px;
  position: sticky;
  top: 104px;
}

.two-checkout-shell .woocommerce-billing-fields,
.two-checkout-shell .woocommerce-shipping-fields,
.two-checkout-shell .woocommerce-additional-fields {
  padding: 24px;
  margin-bottom: 18px;
}

.two-commerce-shell label {
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
}

.two-commerce-shell .form-row {
  margin-bottom: 16px !important;
}

.two-commerce-shell input.input-text,
.two-commerce-shell textarea,
.two-commerce-shell select,
.two-commerce-shell .select2-container .select2-selection--single {
  min-height: 50px;
  padding: 12px 14px !important;
}

.two-commerce-shell .select2-container--default .select2-selection--single {
  background: #050504 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 0 !important;
}

.two-commerce-shell .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 25px !important;
}

.two-checkout-shell #payment {
  background: rgba(255,255,255,.05) !important;
  border-radius: 0 !important;
}

.two-checkout-shell #payment div.payment_box {
  background: #050504 !important;
  color: rgba(255,255,255,.72) !important;
}

.two-checkout-shell #payment div.payment_box::before {
  border-bottom-color: #050504 !important;
}

.two-checkout-shell .woocommerce-terms-and-conditions-wrapper {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1060px) {
  .two-product-detail-shell .woocommerce div.product,
  .two-checkout-shell form.checkout {
    grid-template-columns: 1fr;
  }

  .two-product-detail-shell .woocommerce div.product div.summary,
  .two-cart-shell .cart-collaterals .cart_totals,
  .two-checkout-shell #order_review {
    position: static;
  }

  .two-checkout-shell #order_review_heading,
  .two-checkout-shell #order_review {
    grid-column: auto;
  }

  .two-cart-shell .woocommerce-cart-form,
  .two-cart-shell .cart-collaterals {
    width: 100%;
    float: none;
  }
}

@media (max-width: 720px) {
  .two-commerce-intro-row,
  .two-product-topline,
  .two-product-assurance-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .two-product-detail-shell form.cart {
    grid-template-columns: 1fr;
  }

  .two-product-assurance-grid {
    display: grid;
  }

  .two-commerce-shell table.shop_table_responsive tr,
  .two-commerce-shell table.shop_table_responsive tr td {
    background: #0d0d0d !important;
  }

  .two-cart-shell .coupon {
    flex-direction: column;
    width: 100%;
  }

  .two-cart-shell .coupon input.input-text,
  .two-cart-shell .coupon .button {
    width: 100% !important;
  }
}

/* v1.2.7 — fixed product detail layout + add-to-cart toast */
.two-product-detail-shell {
  max-width: 1320px;
}

.two-product-detail-shell .woocommerce-notices-wrapper,
.two-product-detail-shell .woocommerce-message,
.two-product-detail-shell .woocommerce-info,
.two-product-detail-shell .woocommerce-error {
  max-width: 100%;
}

.two-single-product-layout {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  clear: both;
}

.two-single-product-layout::before,
.two-single-product-layout::after {
  display: none !important;
  content: none !important;
}

.two-single-product-gallery,
.two-single-product-summary {
  min-width: 0;
}

.two-single-product-gallery .woocommerce-product-gallery,
.two-single-product-gallery .woocommerce-product-gallery__wrapper,
.two-single-product-gallery .woocommerce-product-gallery__image,
.two-single-product-gallery div.images {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.two-single-product-gallery .woocommerce-product-gallery__wrapper {
  background: linear-gradient(135deg, #f4f4f1, #d9d9d4);
  border: 1px solid rgba(255,255,255,.14);
  min-height: clamp(520px, 49vw, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 58px);
}

.two-single-product-gallery .woocommerce-product-gallery__image {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.two-single-product-gallery img,
.two-single-product-gallery .wp-post-image {
  width: 100% !important;
  max-height: 620px;
  object-fit: contain;
  display: block;
}

.two-single-product-summary {
  background: rgba(10,10,10,.96);
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(26px, 4vw, 54px);
  position: sticky;
  top: 104px;
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
}

.two-product-eyebrow {
  color: rgba(255,255,255,.56);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: 11px;
  margin: 0 0 14px;
}

.two-single-product-summary .product_title {
  color: #fff;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0 0 20px;
  max-width: 12ch;
}

.two-single-product-summary .price {
  color: #fff !important;
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 38px) !important;
  margin: 0 0 24px !important;
}

.two-single-product-summary .woocommerce-product-details__short-description,
.two-single-product-summary .woocommerce-product-details__short-description p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.8;
  max-width: 58ch;
}

.two-product-purchase-card {
  margin: 30px 0 26px;
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}

.two-product-purchase-card form.cart {
  display: grid !important;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  margin: 0 !important;
  float: none !important;
}

.two-product-purchase-card form.cart::before,
.two-product-purchase-card form.cart::after {
  display: none !important;
  content: none !important;
}

.two-product-purchase-card .quantity {
  float: none !important;
  margin: 0 !important;
}

.two-product-purchase-card .quantity input.qty {
  width: 100% !important;
  height: 58px;
  min-height: 58px;
  text-align: center;
  background: #050504;
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  font-weight: 900;
}

.two-product-purchase-card .single_add_to_cart_button,
.two-product-purchase-card button.single_add_to_cart_button.button {
  width: 100% !important;
  min-height: 58px;
  float: none !important;
  background: #fff !important;
  color: #050504 !important;
  border: 1px solid #fff !important;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
  font-size: 12px !important;
  padding: 0 22px !important;
}

.two-single-product-summary .product_meta {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.two-single-product-summary .product_meta a {
  color: #fff;
  text-decoration: none;
}

.two-product-tabs-section,
.two-related-products-section,
.two-product-assurance-grid {
  clear: both;
  width: 100%;
}

.two-product-tabs-section {
  margin-top: clamp(34px, 5vw, 70px);
}

.two-product-tabs-section .woocommerce-tabs {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(20px, 3vw, 36px);
}

.two-product-tabs-section .woocommerce-tabs ul.tabs {
  margin: 0 0 26px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.two-product-tabs-section .woocommerce-tabs ul.tabs::before,
.two-product-tabs-section .woocommerce-tabs ul.tabs li::before,
.two-product-tabs-section .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.two-product-tabs-section .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 22px 14px 0 !important;
  margin: 0 !important;
}

.two-product-tabs-section .woocommerce-tabs ul.tabs li a {
  color: rgba(255,255,255,.58) !important;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

.two-product-tabs-section .woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
}

.two-product-tabs-section .woocommerce-Tabs-panel,
.two-product-tabs-section .woocommerce-Tabs-panel p,
.two-product-tabs-section .woocommerce-Tabs-panel table {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

.two-related-products-section {
  margin-top: clamp(34px, 5vw, 70px);
}

.two-related-products-section .related.products > h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-size: clamp(28px, 4vw, 52px);
}

.two-added-toast {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 999999;
  background: #fff;
  color: #050504;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.36);
  padding: 16px 20px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 950;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.two-added-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .two-single-product-layout {
    grid-template-columns: 1fr;
  }

  .two-single-product-summary {
    position: static;
  }

  .two-single-product-summary .product_title {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .two-single-product-gallery .woocommerce-product-gallery__wrapper {
    min-height: 360px;
  }

  .two-product-purchase-card form.cart {
    grid-template-columns: 1fr;
  }

  .two-added-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

/* v1.2.8 — About Us + Brands editorial pages */
.two-page-kicker,
.two-story-hero-content > p,
.two-brands-hero p,
.two-brands-feature-content > p,
.two-brands-manifesto > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  font-weight: 900;
}

.two-story-page,
.two-brands-page { background: #f3f1eb; overflow: hidden; }

.two-story-hero {
  min-height: min(80vh, 850px);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(36px, 7vw, 110px);
  color: #fff;
}
.two-story-hero-image,
.two-story-hero-overlay { position: absolute; inset: 0; }
.two-story-hero-image { background-size: cover; background-position: center; transform: scale(1.02); }
.two-story-hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.76)); }
.two-story-hero-content { position: relative; z-index: 1; max-width: 1050px; }
.two-story-hero-content h1 {
  max-width: 12ch;
  margin: 18px 0 30px;
  font-family: var(--font-head);
  font-size: clamp(52px, 8.5vw, 138px);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.two-story-hero-content > span { border-left: 50px solid #fff; padding-left: 14px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 900; }
.two-story-intro {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 150px) clamp(24px, 6vw, 90px);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
}
.two-story-intro-mark { font-family: var(--font-head); font-size: clamp(90px, 16vw, 250px); line-height: .75; letter-spacing: -.09em; color: rgba(17,17,17,.06); font-weight: 950; }
.two-story-intro-copy h2 { margin: 14px 0 28px; font-family: var(--font-head); font-size: clamp(42px, 6vw, 88px); line-height: .94; text-transform: uppercase; letter-spacing: -.055em; max-width: 11ch; }
.two-story-lead { font-size: clamp(20px, 2.2vw, 32px); line-height: 1.45; max-width: 700px; color: #56564f; }
.two-story-editorial { background: #111; color: #fff; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 900px; }
.two-story-photo-stack { min-height: 780px; position: relative; padding: clamp(28px, 5vw, 70px); }
.two-story-photo { background-size: cover; background-position: center; }
.two-story-photo-main { position: absolute; inset: 0 18% 12% 0; }
.two-story-photo-main:after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent,rgba(0,0,0,.3)); }
.two-story-photo-small { position: absolute; width: 42%; height: 40%; right: 6%; bottom: 5%; border: 12px solid #111; }
.two-story-photo-label { position: absolute; z-index: 2; left: 6%; bottom: 5%; text-transform: uppercase; letter-spacing: .2em; font-size: 10px; line-height: 1.8; font-weight: 900; }
.two-story-body { align-self: center; padding: clamp(55px, 8vw, 125px); }
.two-story-body p { color: rgba(255,255,255,.72); font-size: clamp(17px, 1.45vw, 22px); line-height: 1.85; margin: 0 0 28px; }
.two-story-body p:first-child { color:#fff; font-size: clamp(24px, 2.4vw, 37px); line-height:1.45; }
.two-story-values { display:grid; grid-template-columns:repeat(4,1fr); max-width:1500px; margin:0 auto; padding:clamp(70px,9vw,140px) clamp(24px,5vw,70px); }
.two-story-values article { border-left:1px solid rgba(0,0,0,.15); padding:0 clamp(20px,3vw,44px); min-height:220px; }
.two-story-values article:last-child { border-right:1px solid rgba(0,0,0,.15); }
.two-story-values span { font-size:11px; letter-spacing:.2em; font-weight:900; color:#777; }
.two-story-values h3 { font-family:var(--font-head); font-size:clamp(28px,3vw,46px); text-transform:uppercase; margin:55px 0 15px; }
.two-story-values p { color:#696960; line-height:1.7; }
.two-story-closing { background:#dcd7c8; text-align:center; padding:clamp(90px,13vw,190px) 24px; }
.two-story-closing p { text-transform:uppercase; letter-spacing:.24em; font-size:11px; font-weight:900; }
.two-story-closing h2 { font-family:var(--font-head); font-size:clamp(58px,10vw,150px); line-height:.82; letter-spacing:-.075em; text-transform:uppercase; margin:25px 0 48px; }
.two-story-closing a,
.two-brands-manifesto a { display:inline-flex; min-height:52px; align-items:center; padding:0 28px; background:#111; color:#fff; text-transform:uppercase; letter-spacing:.17em; font-size:11px; font-weight:900; }

.two-brands-hero { background:#111; color:#fff; min-height:620px; padding:clamp(60px,8vw,120px); display:flex; align-items:flex-end; justify-content:space-between; gap:40px; }
.two-brands-hero h1 { font-family:var(--font-head); font-size:clamp(62px,10vw,160px); line-height:.8; letter-spacing:-.075em; text-transform:uppercase; margin:20px 0 0; }
.two-brands-hero > span { writing-mode:vertical-rl; text-transform:uppercase; letter-spacing:.25em; font-size:10px; font-weight:900; }
.two-brands-index { display:grid; grid-template-columns:repeat(4,1fr); background:#fff; border-bottom:1px solid #ddd; }
.two-brands-index a { padding:25px clamp(14px,2vw,30px); border-right:1px solid #ddd; font-family:var(--font-head); font-weight:900; letter-spacing:.15em; font-size:12px; }
.two-brands-index a:last-child { border-right:0; }
.two-brands-index span { color:#999; margin-right:12px; }
.two-brands-editorial-list { background:#ece9e0; padding:clamp(35px,5vw,80px); }
.two-brands-feature { max-width:1500px; margin:0 auto clamp(35px,5vw,80px); display:grid; grid-template-columns:1.16fr .84fr; min-height:720px; background:#111; color:#fff; }
.two-brands-feature.is-reversed { grid-template-columns:.84fr 1.16fr; }
.two-brands-feature.is-reversed .two-brands-feature-image { order:2; }
.two-brands-feature-image { background-size:cover; background-position:center; position:relative; min-height:620px; }
.two-brands-feature-image:after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.38)); }
.two-brands-feature-image > span { position:absolute; z-index:1; left:28px; top:25px; border:1px solid rgba(255,255,255,.6); width:46px; height:46px; display:grid; place-items:center; font-size:11px; font-weight:900; }
.two-brands-feature-content { padding:clamp(45px,7vw,105px); display:flex; flex-direction:column; justify-content:center; }
.two-brands-feature-content > p { color:rgba(255,255,255,.55); }
.two-brands-feature-content img { width:min(330px,80%); max-height:92px; object-fit:contain; object-position:left center; margin:34px 0; }
.two-brands-feature-content h2 { font-family:var(--font-head); font-size:clamp(38px,5vw,75px); line-height:.92; letter-spacing:-.055em; text-transform:uppercase; margin:0; }
.two-brands-feature-rule { width:62px; border-top:2px solid #fff; margin:36px 0; }
.two-brands-feature-content .two-brands-feature-copy { color:rgba(255,255,255,.68); text-transform:none; letter-spacing:0; font-size:16px; font-weight:400; line-height:1.8; max-width:520px; }
.two-brands-feature-content > a { margin-top:38px; display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); padding:20px 0; text-transform:uppercase; letter-spacing:.16em; font-size:11px; font-weight:900; }
.two-brands-feature-content > a span { font-size:18px; }
.two-brands-manifesto { text-align:center; background:#d7ddcf; padding:clamp(100px,14vw,210px) 24px; }
.two-brands-manifesto h2 { margin:25px 0 50px; font-family:var(--font-head); font-size:clamp(58px,9vw,136px); line-height:.83; letter-spacing:-.075em; text-transform:uppercase; }

@media (max-width: 900px) {
  .two-story-intro,
  .two-story-editorial,
  .two-brands-feature,
  .two-brands-feature.is-reversed { grid-template-columns:1fr; }
  .two-story-intro-mark { display:none; }
  .two-story-photo-stack { min-height:680px; }
  .two-story-values { grid-template-columns:repeat(2,1fr); }
  .two-story-values article:nth-child(3) { border-top:1px solid rgba(0,0,0,.15); padding-top:35px; }
  .two-story-values article:nth-child(4) { border-top:1px solid rgba(0,0,0,.15); border-right:1px solid rgba(0,0,0,.15); padding-top:35px; }
  .two-brands-feature.is-reversed .two-brands-feature-image { order:0; }
  .two-brands-index { grid-template-columns:repeat(2,1fr); }
  .two-brands-index a:nth-child(2) { border-right:0; }
  .two-brands-index a:nth-child(-n+2) { border-bottom:1px solid #ddd; }
}
@media (max-width: 600px) {
  .two-story-hero { min-height:650px; padding:32px 22px 48px; }
  .two-story-intro { padding:70px 22px; }
  .two-story-editorial { display:block; }
  .two-story-photo-stack { min-height:560px; }
  .two-story-photo-main { inset:0 8% 15% 0; }
  .two-story-photo-small { width:50%; height:35%; right:0; border-width:8px; }
  .two-story-body { padding:65px 22px; }
  .two-story-values { grid-template-columns:1fr; padding:65px 22px; }
  .two-story-values article,
  .two-story-values article:nth-child(3),
  .two-story-values article:nth-child(4) { min-height:0; border:0; border-top:1px solid rgba(0,0,0,.15); padding:28px 0; }
  .two-story-values h3 { margin:20px 0 10px; }
  .two-brands-hero { min-height:560px; padding:70px 22px 45px; }
  .two-brands-hero > span { display:none; }
  .two-brands-editorial-list { padding:18px; }
  .two-brands-feature { min-height:0; margin-bottom:18px; }
  .two-brands-feature-image { min-height:440px; }
  .two-brands-feature-content { padding:48px 25px; }
}

/* About Us refinement — v1.2.9 */
.two-story-intro {
  align-items: center;
}
.two-story-intro-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: clamp(36px, 5vw, 72px);
  border: 1px solid rgba(17,17,17,.08);
  background: #ebe8df;
}
.two-story-intro-brand img {
  width: min(100%, 500px);
  height: auto;
  display: block;
}
.two-story-brand-showcase {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(50px, 7vw, 110px);
  background: #171717;
}
.two-story-collective-logo {
  text-align: center;
  padding-bottom: clamp(24px, 3vw, 44px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.two-story-collective-logo img {
  display: block;
  width: min(100%, 610px);
  height: auto;
  margin: 0 auto;
  filter: invert(1);
}
.two-story-collective-logo span {
  display: block;
  margin-top: 22px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.two-story-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.two-story-logo-card {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0e0e0e;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.two-story-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.36);
  background: #202020;
}
.two-story-logo-card img {
  display: block;
  max-width: 78%;
  max-height: 58px;
  width: auto;
  height: auto;
}
.two-story-brand-caption {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .two-story-intro-brand { min-height: 210px; }
  .two-story-brand-showcase { min-height: 680px; }
}
@media (max-width: 680px) {
  .two-story-intro-brand { min-height: 160px; padding: 34px 24px; }
  .two-story-brand-showcase { min-height: 0; padding: 58px 22px; }
  .two-story-logo-grid { grid-template-columns: 1fr; }
  .two-story-logo-card { min-height: 120px; }
}

/* =========================================================
   v1.3.2 — Final desktop four-card fit correction
   Keep the brand row inside the padded homepage section at 100% zoom.
   ========================================================= */
@media (min-width: 1281px) {
    .two-brand-suite {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .two-brand-editorial-grid {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(14px, 1.15vw, 22px);
        overflow-x: visible;
    }

    .two-brand-editorial-card {
        --photo-size: clamp(145px, 8.6vw, 190px);
        min-width: 0;
        width: 100%;
        grid-template-columns: var(--photo-size) minmax(0, 1fr);
        box-sizing: border-box;
    }

    .two-brand-editorial-info {
        min-width: 0;
        padding: clamp(18px, 1.15vw, 24px);
        box-sizing: border-box;
    }

    .two-fieldway .two-brand-editorial-info h3 {
        font-size: clamp(21px, 1.25vw, 30px);
        letter-spacing: clamp(3px, .3vw, 6px);
    }
}
