@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500&display=swap'); :root { --black: #0a0a0a; --white: #ffffff; --mid: #f5f5f5; --border: #e0e0e0; --text-muted: #777; --text-body: #222; } * { box-sizing: border-box; margin: 0; padding: 0; } .spur-wrap { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--black); max-width: 1100px; margin: 0 auto; padding: 48px 24px; } .spur-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; border-bottom: 1px solid var(--border); padding-bottom: 24px; flex-wrap: wrap; gap: 12px; } .spur-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; } .spur-meta { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); } .spur-tabs { display: flex; gap: 4px; margin-bottom: 32px; } .spur-tab { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 24px; background: var(--mid); color: var(--text-muted); border: 1px solid var(--border); cursor: pointer; transition: all 0.15s; border-radius: 2px; } .spur-tab:hover { color: var(--black); border-color: #aaa; } .spur-tab.active { background: var(--black); color: var(--white); border-color: var(--black); } .spur-panel { display: none; } .spur-panel.active { display: block; } .spec-category { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); padding: 20px 0 8px; border-bottom: 2px solid var(--black); margin-bottom: 0; } .spec-row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--border); transition: background 0.1s; } .spec-row:hover { background: var(--mid); } .spec-key { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); padding: 12px 16px 12px 0; align-self: start; } .spec-val { font-size: 14px; font-weight: 300; color: var(--text-body); padding: 12px 0; line-height: 1.5; } @media (max-width: 600px) { .spec-row { grid-template-columns: 1fr; } .spec-key { padding-bottom: 2px; } .spec-val { padding-top: 0; padding-bottom: 12px; } } Barrows Jacket Men's · Lightweight, packable hooded synthetic fill jacket Specs Description On a long day out in the backcountry, maximum warmth and maximum moisture management are crucial. Our Barrows Jacket ensures your core stays warm, resisting water from the outside with a breathable membrane on the inside, actively drawing moisture away while trapping heat close to the body. Engineered with a body mapped combination of recycled Pinneco® materials for increased breathability and packability, this jacket is a versatile, everyday layer you'll wear from the weekend through the work week. Features Front Insulation Body Mapped Insulation: Pinneco Core® in the front torso boosts body warmth and optimizes dryness Back Insulation Body Mapped Insulation: Pinneco Mantle™ on the back provides structural support with minimal quilt lines, increasing the performance of the insulation and water-resistance of the shell fabric Fit Regular Fit allows for range of motion without being restrictive. Add a layer underneath and a layer on top if needed Pockets Zip hand pockets, large interior mesh drop-in pockets, and chest pocket that doubles as a built in stuff sack Hood Built in hood visor adds weather proofing and increased visibility Thumb Holes Stealth, no-draft thumb holes insulate hands while eliminating the gap between sleeve and glove Drawcords Seal in body heat with covert adjustable drawcords in hood and hem Zippers YKK Vislon® zippers with knotted zipper pulls for ease of use with gloves Materials Shell 100% post-industrial recycled nylon ripstop with a water-repellent finish without intentionally added PFAS Lining Post-consumer recycled polyester taffeta with a water-repellent finish without intentionally added PFAS Front Insulation Pinneco Core® - 50% recycled polyester with breathable membrane Back Insulation Pinneco Mantle - 100% post-consumer recycled polyester Care Machine Wash Machine wash in a washing machine WITHOUT AN AGITATOR, agitators are likely to cause damage to your gear Settings Wash on a warm, gentle cycle. Tumble dry low heat. Soap Use gear specific soap, we recommend Nikwax Tech Wash Warnings Do not use fabric softeners. Do not bleach. Do not iron. Do not dry clean. Warranty All Big Agnes gear is guaranteed against manufacturing or material defect. We do not warranty products damaged from normal wear and tear, alteration made by owner, misuse, accidents, or damages caused by uses other than intended. Damage due to misuse, normal wear and tear, or improper care may be repaired, at the discretion of Big Agnes, at a reasonable charge. Gear returned for repair must be clean and free of debris. function showPanel(id, btn) { document.querySelectorAll('.spur-panel').forEach(p => p.classList.remove('active')); document.querySelectorAll('.spur-tab').forEach(t => t.classList.remove('active')); document.getElementById('panel-' + id).classList.add('active'); btn.classList.add('active'); }