@charset "UTF-8";

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'DM Sans',sans-serif;
  color:#ffffff;
  background:#212121;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:#fff;text-decoration:none}
a:hover{opacity:.8}
img{max-width:100%;height:auto;display:block}


#utilBar_wrap{
  background:#111;
  color:#aaa;
  text-align:center;
  padding:9px 15px;
  font-size:0.75rem;
  font-weight:400;
  letter-spacing:.5px;
  position:relative;z-index:100;
}
.utilBar_inner{max-width:1300px;margin:0 auto}
.utilBar_txt{display:inline-block}


#navMain{
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid #e0e0e0;
}
.navMain_inner{
  max-width:1300px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  height:62px;
}
.nav_logoLink{text-decoration:none}
.nav_logoTxt{
  font-family:'Space Mono',monospace;
  font-size:17px;
  font-weight:700;
  letter-spacing:3px;
  color:#111;
  text-transform:uppercase;
}
.nav_linksSide{
  display:flex;
  gap:28px;
  align-items:center;
}
.navLink_item{
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#333;
  transition:color .15s;
}
.navLink_item:hover{color:#000;opacity:1}
.navLink_active{color:#000;border-bottom:2px solid #000;padding-bottom:2px}
.navLink_cta{
  background:#111;
  color:#fff;
  padding:8px 18px;
  border-bottom:none;
}
.navLink_cta:hover{background:#333;color:#fff;opacity:1}
.nav_rightSide{display:flex;align-items:center;gap:15px}
.nav_cartTrigger{
  position:relative;
  color:#222;
  font-size:1.25rem;
  display:flex;
  align-items:center;
}
.nav_cartCount{
  position:absolute;
  top:-6px;right:-10px;
  background:#c0392b;color:#fff;
  font-size:9px;font-weight:700;
  width:17px;height:17px;
  border-radius:50%;
  display:none;
  align-items:center;justify-content:center;
  line-height:1;
  font-family:'DM Sans',sans-serif;
}
.nav_burger{display:none;cursor:pointer;flex-direction:column;gap:5px}
.nav_burger span{display:block;width:22px;height:2px;background:#222}


.mobNav_overlay{
  position:fixed;top:0;right:0;bottom:0;left:0;
  background:rgba(0,0,0,.5);
  z-index:9999;
  display:none;
}
.mobNav_overlay.open{display:block}
.mobNav_linksWrap{
  position:absolute;right:0;top:0;bottom:0;
  width:280px;background:#fff;
  padding:70px 30px 30px;
  display:flex;flex-direction:column;gap:18px;
}
.mobNav_linksWrap a{
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-weight:500;
  color:#222;
}
.mobNav_close{
  position:absolute;top:20px;right:22px;
  font-size:26px;cursor:pointer;color:#222;z-index:10000;
}


.spacerRule{
  border:none;
  display:block;
  width:100%;
}


#heroBlock{
  position:relative;
  overflow:hidden;
}
.hero_imgContainer{
  position:relative;
  min-height:600px;
  max-height:85vh;
  overflow:hidden;
  background:#111;
}
.hero_bgImg{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  top:0;left:0;
  min-height:600px;
}
.hero_overlay{
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:linear-gradient(to right,rgba(0,0,0,.65) 0%,rgba(0,0,0,.25) 60%,rgba(0,0,0,.1) 100%);
}
.hero_contentBox{
  position:relative;
  z-index:2;
  max-width:1300px;
  margin:0 auto;
  padding:140px 40px 100px;
}
.hero_overline{
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:4px;
  color:rgba(255,255,255,.6);
  margin-bottom:1.125rem;
  text-transform:uppercase;
}
.hero_heading{
  font-family:'Instrument Serif',serif;
  font-size:3.875rem;
  font-weight:400;
  line-height:1.1;
  color:#fff;
  margin-bottom:22px;
  font-style:italic;
}
.hero_subtext{
  font-size:15px;
  font-weight:300;
  color:rgba(255,255,255,.75);
  max-width:480px;
  line-height:1.7;
  margin-bottom:2rem;
}
.hero_btnRow{display:flex;gap:14px;flex-wrap:wrap}
.hero_btnPrimary{
  background:#fff;color:#111;
  padding:13px 30px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:background .15s,color .15s;
}
.hero_btnPrimary:hover{background:#ddd;color:#000;opacity:1}
.hero_btnOutline{
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
  padding:13px 30px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:500;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:border-color .15s;
}
.hero_btnOutline:hover{border-color:#fff;opacity:1}


#catGridWrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.catGrid_inner{display:flex;flex-direction:column;gap:4px}
.catGrid_row{display:flex;gap:4px}
.catGrid_tile{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:16/9;
}
.catGrid_wide{flex:1.6}
.catGrid_narrow{flex:1}
.catGrid_img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .4s;
}
.catGrid_tile:hover .catGrid_img{transform:scale(1.04)}
.catGrid_label{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:20px 22px;
  background:linear-gradient(transparent,rgba(0,0,0,.65));
}
.catGrid_labelTxt{
  display:block;
  font-family:'DM Sans',sans-serif;
  font-size:1rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#fff;
}
.catGrid_labelSub{
  display:block;
  font-size:12px;
  font-weight:300;
  color:rgba(255,255,255,.6);
  margin-top:3px;
}


#featureBanner_1{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.featBanner_inner{
  display:flex;
  gap:0;
  background:#1a1a1a;
  overflow:hidden;
}
.featBanner_imgSide{
  flex:1.2;
  min-height:420px;
  overflow:hidden;
}
.featBanner_img{
  width:100%;height:100%;
  object-fit:cover;
}
.featBanner_textSide{
  flex:1;
  padding:50px 45px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.featBanner_overline{
  font-family:'Space Mono',monospace;
  font-size:10px;
  letter-spacing:3px;
  color:rgba(255,255,255,.45);
  margin-bottom:0.875rem;
  text-transform:uppercase;
}
.featBanner_title{
  font-family:'Instrument Serif',serif;
  font-size:34px;
  font-weight:400;
  line-height:1.2;
  color:#fff;
  margin-bottom:16px;
}
.featBanner_desc{
  font-size:0.875em;
  font-weight:300;
  color:rgba(255,255,255,.65);
  line-height:1.75;
  margin-bottom:20px;
}
.featBanner_price{
  font-family:'Space Mono',monospace;
  font-size:26px;
  font-weight:700;
  color:#fff;
  margin-bottom:1.375rem;
}
.featBanner_cartBtn{
  align-self:flex-start;
  border:1px solid #fff;
  background:transparent;
  color:#fff;
  padding:12px 28px;
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s,color .15s;
}
.featBanner_cartBtn:hover{background:#fff;color:#111}


#prodSection{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.prodSection_head{
  text-align:center;
  padding:10px 0 30px;
}
.prodSection_title{
  font-family:'Space Mono',monospace;
  font-size:22px;
  font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  color:#fff;
}
.prodSection_sub{
  font-size:0.8125rem;
  color:rgba(255,255,255,.5);
  font-weight:300;
  margin-top:8px;
}
.prodGrid_main{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  padding-bottom:10px;
}
.prodCard_box{
  background:#1a1a1a;
  cursor:pointer;
  transition:box-shadow .2s;
  position:relative;
  height:100%;
  display:flex;flex-direction:column;
  overflow:hidden;
}
.prodCard_box:hover{box-shadow:0 4px 24px rgba(0,0,0,.35)}
.prodCard_badgeTag{
  position:absolute;top:12px;left:12px;
  background:#c0392b;color:#fff;
  font-size:10px;font-weight:700;
  padding:4px 10px;
  letter-spacing:1px;
  text-transform:uppercase;
  z-index:2;
}
.prodCard_imgWrap{
  overflow:hidden;
  aspect-ratio:1/1;
  background:#2a2a2a;
}
.prodCard_photo{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .3s;
}
.prodCard_box:hover .prodCard_photo{transform:scale(1.04)}
.prodCard_info{
  padding:16px 18px 20px;
  flex:1;
  display:flex;flex-direction:column;
}
.prodCard_name{
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  color:#fff;
  margin-bottom:5px;
}
.prodCard_specsLine{
  font-size:11px;
  color:rgba(255,255,255,.4);
  font-weight:300;
  margin-bottom:0.5rem;
  line-height:1.5;
}
.prodCard_priceLine{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-bottom:6px;
}
.prodCard_nowPrice{
  font-family:'Space Mono',monospace;
  font-size:17px;
  font-weight:700;
  color:#fff;
}
.prodCard_wasPrice{
  font-size:13px;
  color:rgba(255,255,255,.35);
  text-decoration:line-through;
  font-weight:400;
}
.prodCard_stockLine{
  font-size:11px;
  color:#4a7c59;
  font-weight:400;
  margin-bottom:12px;
}
.prodCard_oos{color:#c0392b}
.prodCard_addBtn{
  margin-top:auto;
  border:1px solid rgba(255,255,255,.3);
  background:transparent;
  padding:10px 15px;
  font-family:'DM Sans',sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#fff;
  cursor:pointer;
  transition:background .15s,color .15s,border-color .15s;
  width:100%;
}
.prodCard_addBtn:hover{background:#fff;color:#111;border-color:#fff}


.prodModal_wrap{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.6);
  z-index:10000;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.prodModal_wrap.open{display:flex}
.prodModal_box{
  background:#1a1a1a;
  max-width:860px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
}
.prodModal_closeBtn{
  position:absolute;top:14px;right:18px;
  font-size:24px;cursor:pointer;color:#fff;z-index:2;
}
.prodModal_inner{display:flex;gap:0}
.prodModal_imgSide{
  flex:1;
  position:relative;
  background:#2a2a2a;
  min-height:300px;
}
.prodModal_mainImg{width:100%;height:100%;object-fit:cover}
.prodModal_badge{
  position:absolute;top:14px;left:14px;
  background:#c0392b;color:#fff;
  font-size:10px;font-weight:700;
  padding:4px 10px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.prodModal_infoSide{
  flex:1;
  padding:35px 30px 30px;
  display:flex;flex-direction:column;
}
.prodModal_name{
  font-size:1.125rem;
  font-weight:700;
  letter-spacing:1px;
  color:#fff;
  margin-bottom:10px;
}
.prodModal_specs{
  font-size:12px;
  color:rgba(255,255,255,.4);
  font-weight:300;
  margin-bottom:12px;
  line-height:1.6;
}
.prodModal_desc{
  font-size:14px;
  color:rgba(255,255,255,.6);
  line-height:1.7;
  margin-bottom:0.75rem;
  font-weight:300;
}
.prodModal_stockLine{
  font-size:12px;
  color:#4a7c59;
  font-weight:400;
  margin-bottom:15px;
}
.prodModal_oos{color:#c0392b}
.prodModal_priceRow{
  display:flex;align-items:baseline;gap:12px;
  margin-bottom:18px;
}
.prodModal_price{
  font-family:'Space Mono',monospace;
  font-size:22px;
  font-weight:700;
  color:#fff;
}
.prodModal_oldPrice{
  font-size:14px;
  color:rgba(255,255,255,.35);
  text-decoration:line-through;
}
.prodModal_sizeRow,.prodModal_qtyRow{
  display:flex;align-items:center;gap:10px;
  margin-bottom:14px;
}
.prodModal_sizeSelect,.prodModal_qtySelect{
  width:90px;
  padding:8px 10px;
  background:#2a2a2a;
  border:1px solid #444;
  color:#fff;
  font-family:'DM Sans',sans-serif;
  font-size:13px;
}
.prodModal_addBtn{
  width:100%;
  margin-top:auto;
  background:#fff;
  color:#111;
  border:none;
  padding:14px 20px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s;
}
.prodModal_addBtn:hover{background:#ddd}


.cartModal_wrap{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.6);
  z-index:10001;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.cartModal_wrap.open{display:flex}
.cartModal_box{
  background:#1a1a1a;
  width:520px;
  max-width:100%;
  max-height:80vh;
  display:flex;flex-direction:column;
}
.cartModal_hdr{
  display:flex;justify-content:space-between;align-items:center;
  padding:22px 28px;
  border-bottom:1px solid #2a2a2a;
}
.cartModal_hdrTitle{
  font-family:'Space Mono',monospace;
  font-size:13px;font-weight:700;
  letter-spacing:3px;text-transform:uppercase;
}
.cartModal_hdrClose{font-size:22px;cursor:pointer;color:rgba(255,255,255,.5)}
.cartModal_hdrClose:hover{color:#fff}
.cartModal_body{
  flex:1;overflow-y:auto;
  padding:10px 28px;
}
.cartPanel_empty{
  font-size:13px;color:rgba(255,255,255,.35);
  text-align:center;
  padding:40px 0;
  font-weight:300;
}
.cartItem_row{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 0;
  border-bottom:1px solid #262626;
}
.cartItem_name{
  font-size:13px;font-weight:500;
  color:#fff;
  margin-bottom:3px;
}
.cartItem_priceLine{
  font-size:12px;color:rgba(255,255,255,.4);font-weight:300;
}
.cartItem_ctrls{display:flex;align-items:center;gap:8px}
.cartItem_qtyBtn{
  width:28px;height:28px;
  border:1px solid #444;background:transparent;
  cursor:pointer;font-size:14px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
}
.cartItem_qtyBtn:hover{background:#333}
.cartItem_qtyVal{
  font-family:'Space Mono',monospace;
  font-size:13px;font-weight:700;
  min-width:22px;text-align:center;
  color:#fff;
}
.cartItem_removeBtn{
  border:none;background:transparent;cursor:pointer;
  color:rgba(255,255,255,.3);display:flex;align-items:center;
  margin-left:6px;font-size:16px;
}
.cartItem_removeBtn:hover{color:#c0392b}
.cartModal_ftr{
  padding:20px 28px;
  border-top:1px solid #2a2a2a;
}
.cartModal_totalRow{
  display:flex;justify-content:space-between;
  font-size:14px;font-weight:700;
  letter-spacing:1px;text-transform:uppercase;
  margin-bottom:16px;
}
.cartModal_totalNum{font-family:'Space Mono',monospace;font-size:1.125rem}
.cartModal_goBtn{
  display:block;
  width:100%;text-align:center;
  background:#fff;color:#111;
  padding:14px 20px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:background .15s;
}
.cartModal_goBtn:hover{background:#ddd;opacity:1}


.cartToast_bar{
  position:fixed;
  bottom:-60px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  color:#111;
  padding:12px 24px;
  font-size:13px;font-weight:600;
  letter-spacing:.5px;
  display:flex;align-items:center;gap:8px;
  z-index:10002;
  transition:bottom .3s;
  white-space:nowrap;
}
.cartToast_bar i{font-size:18px;color:#4a7c59}
.cartToast_bar.show{bottom:30px}


#brandStory_wrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.brandStory_inner{
  display:flex;
  gap:0;
  background:#1a1a1a;
  overflow:hidden;
}
.brandStory_txtCol{
  flex:1;
  padding:3.125rem 2.8rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.brandStory_overline{
  font-family:'Space Mono',monospace;
  font-size:10px;
  letter-spacing:3px;
  color:rgba(255,255,255,.4);
  margin-bottom:14px;
}
.brandStory_title{
  font-family:'Instrument Serif',serif;
  font-size:28px;
  font-weight:400;
  line-height:1.3;
  color:#fff;
  margin-bottom:1.25rem;
}
.brandStory_p{
  font-size:14px;
  font-weight:300;
  color:rgba(255,255,255,.6);
  line-height:1.8;
  margin-bottom:12px;
}
.brandStory_imgCol{
  flex:1;
  min-height:380px;
  overflow:hidden;
}
.brandStory_img{
  width:100%;height:100%;
  object-fit:cover;
}


#trustRow_wrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.trustRow_inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}
.trustRow_card{
  background:#1a1a1a;
  padding:40px 30px;
  text-align:center;
}
.trustRow_icon{
  font-size:1.875rem;
  color:rgba(255,255,255,.5);
  margin-bottom:16px;
  display:block;
}
.trustRow_cardTitle{
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:10px;
}
.trustRow_cardTxt{
  font-size:13px;
  font-weight:300;
  color:rgba(255,255,255,.5);
  line-height:1.7;
}


#sizeGuide_wrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.sizeGuide_inner{
  background:#1a1a1a;
  padding:40px 35px;
}
.sizeGuide_title{
  font-family:'Space Mono',monospace;
  font-size:18px;
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  text-align:center;
  color:#fff;
  margin-bottom:8px;
}
.sizeGuide_sub{
  font-size:13px;
  color:rgba(255,255,255,.45);
  text-align:center;
  font-weight:300;
  margin-bottom:1.5625rem;
}
.sizeTable_scroll{overflow-x:auto}
.sizeTable_main{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
}
.sizeTable_main thead{background:#111}
.sizeTable_main th{
  padding:12px 16px;
  text-align:center;
  font-family:'Space Mono',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  border-bottom:1px solid #333;
}
.sizeTable_main td{
  padding:11px 16px;
  border-bottom:1px solid #2a2a2a;
  color:rgba(255,255,255,.6);
  font-weight:300;
  text-align:center;
}
.sizeTable_main td:first-child{
  font-weight:700;
  color:rgba(255,255,255,.5);
  font-family:'Space Mono',monospace;
  font-size:10px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.sizeTable_main tr:hover td{background:rgba(255,255,255,.03)}
.sizeGuide_note{
  font-size:12px;
  color:rgba(255,255,255,.35);
  font-weight:300;
  line-height:1.7;
  margin-top:18px;
  text-align:center;
}


#releaseTeaser_wrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.releaseTeaser_inner{
  display:flex;
  gap:0;
  background:#1a1a1a;
  overflow:hidden;
}
.releaseTeaser_imgSide{
  flex:1;
  min-height:340px;
  overflow:hidden;
}
.releaseTeaser_img{width:100%;height:100%;object-fit:cover}
.releaseTeaser_textSide{
  flex:1;
  padding:45px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.releaseTeaser_badge{
  display:inline-block;
  align-self:flex-start;
  background:#c0392b;
  color:#fff;
  font-size:10px;font-weight:700;
  letter-spacing:2px;
  padding:4px 12px;
  margin-bottom:1rem;
}
.releaseTeaser_title{
  font-family:'Instrument Serif',serif;
  font-size:28px;
  font-weight:400;
  color:#fff;
  margin-bottom:24px;
}
.releaseTeaser_item{
  display:flex;
  gap:16px;
  align-items:baseline;
  padding:10px 0;
  border-bottom:1px solid #2a2a2a;
}
.releaseTeaser_date{
  font-family:'Space Mono',monospace;
  font-size:11px;
  color:rgba(255,255,255,.4);
  letter-spacing:1px;
  min-width:70px;
}
.releaseTeaser_model{
  font-size:0.875rem;
  font-weight:500;
  color:#fff;
}
.releaseTeaser_link{
  margin-top:22px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.releaseTeaser_link:hover{opacity:.7}


#faqBlock{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.faqBlock_inner{
  max-width:760px;
  margin:0 auto;
}
.faqBlock_title{
  font-family:'Space Mono',monospace;
  font-size:20px;font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  text-align:center;
  color:#fff;
  padding:10px 0 25px;
}
.faqGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4px;
}
.faqGrid_card{
  background:#1a1a1a;
  padding:28px 26px;
}
.faqGrid_cardWide{
  grid-column:1/-1;
}
.faqGrid_q{
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
  letter-spacing:.3px;
}
.faqGrid_a{
  font-size:13px;
  font-weight:300;
  color:rgba(255,255,255,.5);
  line-height:1.75;
}


#bestellFormWrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.bestellForm_head{
  text-align:center;
  padding:10px 0 25px;
}
.bestellForm_title{
  font-family:'Space Mono',monospace;
  font-size:1.375rem;font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  color:#fff;
}
.bestellForm_sub{
  font-size:13px;color:rgba(255,255,255,.45);
  font-weight:300;
  margin-top:6px;
}
.bestellForm_body{
  max-width:800px;
}
.formBlock_row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 30px;
  margin-bottom:4px;
}
.formBlock_groupTitle{
  font-family:'Space Mono',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-bottom:14px;
  padding-bottom:8px;
  border-bottom:1px solid #2a2a2a;
}
.orderStrip{
  background:#1a1a1a;
  padding:22px 28px;
  margin-bottom:28px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 30px;
}
.orderStrip_label{
  font-family:'Space Mono',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  color:rgba(255,255,255,.5);
}
.orderStrip_items{
  flex:1;
  min-width:200px;
}
.summItem_row{
  display:inline;
  font-size:13px;font-weight:300;color:rgba(255,255,255,.6);
}
.summItem_row::after{content:' \00b7 '}
.summItem_row:last-child::after{content:''}
.summItem_label{font-weight:300}
.summItem_val{font-family:'Space Mono',monospace;font-weight:600;color:#fff}
.orderStrip_total{
  font-size:14px;font-weight:700;
  letter-spacing:1px;
  white-space:nowrap;
}
.orderStrip_totalNum{font-family:'Space Mono',monospace;font-size:1.125rem;color:#fff}
.orderStrip_hint{
  width:100%;
  font-size:11px;color:rgba(255,255,255,.25);
  font-weight:300;
}
.orderStrip_empty{
  font-size:12px;color:rgba(255,255,255,.3);
  font-weight:300;
}
.payTile_row{
  display:flex;
  gap:10px;
}
.payTile{
  flex:1;
  background:#2a2a2a;
  border:2px solid #333;
  padding:18px 16px;
  text-align:center;
  cursor:pointer;
  transition:border-color .15s;
}
.payTile i{
  font-size:22px;
  color:rgba(255,255,255,.4);
  display:block;
  margin-bottom:8px;
}
.payTile span{
  font-size:11px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
}
.payTile.active{border-color:#fff}
.payTile.active i{color:#fff}
.payTile.active span{color:#fff}
.payTile:hover{border-color:rgba(255,255,255,.5)}
.fieldWrap{margin-bottom:14px}
.formRow_double{display:flex;gap:15px;margin-bottom:0}
.formRow_double .fieldWrap{flex:1}
.fieldLabel{
  display:block;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  margin-bottom:5px;
}
.fieldInput{
  width:100%;
  border:1px solid #444;
  padding:11px 12px;
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  color:#fff;
  background:#2a2a2a;
  outline:none;
  transition:border-color .15s;
}
.fieldInput:focus{border-color:#888}
.fieldTextarea{
  width:100%;
  border:1px solid #444;
  padding:11px 12px;
  font-family:'DM Sans',sans-serif;
  font-size:0.875rem;
  color:#fff;
  background:#2a2a2a;
  outline:none;
  resize:vertical;
  transition:border-color .15s;
}
.fieldTextarea:focus{border-color:#888}
.payBlock{
  margin:20px 0 25px;
  padding:20px;
  border:1px solid #333;
  background:#111;
}
.payBlock_title{
  font-family:'Space Mono',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-bottom:15px;
}
.bestellSubmitBtn{
  width:100%;
  background:#fff;
  color:#111;
  border:none;
  padding:15px 28px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s;
}
.bestellSubmitBtn:hover{background:#ddd}



#newsletterBlock{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.newsletter_inner{
  background:#1a1a1a;
  padding:45px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}
.newsletter_title{
  font-family:'Instrument Serif',serif;
  font-size:1.625rem;
  font-weight:400;
  color:#fff;
  margin-bottom:6px;
}
.newsletter_desc{
  font-size:13px;
  color:rgba(255,255,255,.5);
  font-weight:300;
}
.newsletter_formRow{display:flex;gap:0}
.newsletter_input{
  padding:12px 16px;
  border:1px solid #444;
  border-right:none;
  background:#2a2a2a;
  color:#fff;
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  outline:none;
  min-width:250px;
}
.newsletter_input:focus{border-color:#666}
.newsletter_submitBtn{
  padding:12px 24px;
  background:#fff;
  color:#111;
  border:none;
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s;
}
.newsletter_submitBtn:hover{background:#ddd}


#ftrMain{
  max-width:1300px;
  margin:0 auto;
  padding:50px 20px 0;
}
.ftr_upper{
  display:flex;
  gap:60px;
  padding-bottom:35px;
  border-bottom:1px solid #333;
  flex-wrap:wrap;
}
.ftr_infoCol{min-width:200px;flex:1.5}
.ftr_brand{
  font-family:'Space Mono',monospace;
  font-size:1rem;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.ftr_addr,.ftr_phone,.ftr_email{
  font-size:13px;
  color:rgba(255,255,255,.45);
  font-weight:300;
  line-height:1.8;
}
.ftr_linksCol{min-width:120px;flex:1}
.ftr_colTitle{
  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  margin-bottom:12px;
}
.ftr_linksCol a{
  display:block;
  font-size:0.8125rem;
  color:rgba(255,255,255,.45);
  font-weight:300;
  line-height:2;
}
.ftr_linksCol a:hover{color:#fff;opacity:1}
.ftr_lower{
  padding:20px 0 40px;
  text-align:center;
}
.ftr_copy{
  font-size:10px;
  color:rgba(255,255,255,.25);
  letter-spacing:.5px;
  line-height:1.8;
}


.ckModal_wrap{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.65);
  z-index:99999;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.ckModal_wrap.open{display:flex}
.ckModal_box{
  background:#1a1a1a;
  max-width:480px;
  width:100%;
  padding:36px 32px 28px;
}
.ckModal_title{
  font-family:'Space Mono',monospace;
  font-size:13px;font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:12px;
}
.ckModal_desc{
  font-size:13px;
  font-weight:300;
  color:rgba(255,255,255,.5);
  line-height:1.7;
  margin-bottom:22px;
}
.ckModal_desc a{color:#fff;text-decoration:underline}
.ckModal_options{margin-bottom:24px}
.ckModal_optRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid #262626;
}
.ckModal_optRow:last-child{border-bottom:none}
.ckModal_optName{
  font-size:14px;
  font-weight:600;
  color:#fff;
  margin-bottom:2px;
}
.ckModal_optDesc{
  font-size:11px;
  color:rgba(255,255,255,.35);
  font-weight:300;
}
.ckToggle{
  position:relative;
  display:inline-block;
  width:42px;height:22px;
  cursor:pointer;
  flex-shrink:0;
}
.ckToggle input{opacity:0;width:0;height:0}
.ckToggle_track{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:#333;
  transition:background .2s;
}
.ckToggle_track:before{
  content:"";
  position:absolute;
  height:16px;width:16px;
  left:3px;bottom:3px;
  background:#888;
  transition:transform .2s,background .2s;
}
.ckToggle input:checked + .ckToggle_track{background:#4a7c59}
.ckToggle input:checked + .ckToggle_track:before{transform:translateX(20px);background:#fff}
.ckToggle_locked{background:#4a7c59;cursor:not-allowed}
.ckToggle_locked:before{transform:translateX(20px);background:#fff}
.ckModal_btns{
  display:flex;gap:10px;
}
.ckModal_btnSave{
  flex:1;
  background:transparent;
  border:1px solid #555;
  color:#fff;
  padding:12px 16px;
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:border-color .15s;
  text-align:center;
}
.ckModal_btnSave:hover{border-color:#999}
.ckModal_btnAll{
  flex:1;
  background:#fff;
  color:#111;
  border:none;
  padding:12px 16px;
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s;
  text-align:center;
}
.ckModal_btnAll:hover{background:#ddd}


.tyModal_wrap{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.65);
  z-index:10003;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.tyModal_wrap.open{display:flex}
.tyModal_box{
  background:#1a1a1a;
  max-width:460px;
  width:100%;
  padding:50px 40px;
  text-align:center;
  position:relative;
}
.tyModal_closeBtn{
  position:absolute;top:14px;right:18px;
  font-size:22px;cursor:pointer;color:rgba(255,255,255,.5);
}
.tyModal_closeBtn:hover{color:#fff}
.tyModal_icon{
  font-size:52px;
  color:#4a7c59;
  display:block;
  margin-bottom:18px;
}
.tyModal_title{
  font-family:'Space Mono',monospace;
  font-size:1.25rem;font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:14px;
}
.tyModal_txt{
  font-size:14px;
  color:rgba(255,255,255,.6);
  font-weight:300;
  line-height:1.7;
  margin-bottom:8px;
}
.tyModal_sub{
  font-size:12px;
  color:rgba(255,255,255,.35);
  font-weight:300;
  margin-bottom:28px;
}
.tyModal_btn{
  background:#fff;
  color:#111;
  border:none;
  padding:13px 32px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s;
}
.tyModal_btn:hover{background:#ddd}


#ablaufWrap{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.ablauf_inner{}
.ablauf_title{
  font-family:'Space Mono',monospace;
  font-size:22px;font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  text-align:center;
  color:#fff;
  padding:10px 0 5px;
}
.ablauf_sub{
  font-size:13px;color:rgba(255,255,255,.45);
  text-align:center;font-weight:300;
  margin-bottom:1.75rem;
}
.ablauf_grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:4px;
}
.ablauf_step{
  background:#1a1a1a;
  padding:32px 24px 28px;
}
.ablauf_num{
  font-family:'Space Mono',monospace;
  font-size:2.25rem;
  font-weight:700;
  color:#2a2a2a;
  line-height:1;
  margin-bottom:14px;
}
.ablauf_stepHead{
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:10px;
}
.ablauf_stepTxt{
  font-size:13px;
  color:rgba(255,255,255,.5);
  font-weight:300;
  line-height:1.75;
}


#kundenStimmen{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.stimmen_inner{}
.stimmen_title{
  font-family:'Space Mono',monospace;
  font-size:20px;font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  text-align:center;
  color:#fff;
  padding:10px 0 1.5rem;
}
.stimmen_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}
.stimmen_card{
  background:#1a1a1a;
  padding:30px 26px;
}
.stimmen_stars{
  font-size:14px;
  color:#d4a84b;
  letter-spacing:2px;
  margin-bottom:12px;
}
.stimmen_text{
  font-size:0.8125rem;
  font-weight:300;
  color:rgba(255,255,255,.6);
  line-height:1.75;
  margin-bottom:16px;
  font-style:italic;
}
.stimmen_author{
  font-size:13px;
  font-weight:600;
  color:#fff;
  margin-bottom:2px;
}
.stimmen_detail{
  font-size:11px;
  color:rgba(255,255,255,.35);
  font-weight:300;
}


#fehlerBlock{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.fehler_inner{
  max-width:860px;
  margin:0 auto;
}
.fehler_title{
  font-family:'Space Mono',monospace;
  font-size:20px;font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  text-align:center;
  color:#fff;
  padding:10px 0 5px;
}
.fehler_sub{
  font-size:13px;color:rgba(255,255,255,.45);
  text-align:center;font-weight:300;
  margin-bottom:28px;
}
.fehler_grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:4px;
}
.fehler_card{
  background:#1a1a1a;
  padding:28px 26px;
}
.fehler_cardNum{
  font-family:'Space Mono',monospace;
  font-size:11px;
  color:rgba(255,255,255,.25);
  letter-spacing:2px;
  margin-bottom:8px;
}
.fehler_cardHead{
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}
.fehler_cardTxt{
  font-size:13px;
  font-weight:300;
  color:rgba(255,255,255,.5);
  line-height:1.7;
}


@media (max-width:1024px){
  .prodGrid_main{grid-template-columns:repeat(2,1fr);gap:15px}
  .trustRow_inner{grid-template-columns:repeat(3,1fr)}
  .featBanner_inner{flex-direction:column}
  .featBanner_imgSide{min-height:300px}
  .brandStory_inner{flex-direction:column}
  .brandStory_imgCol{min-height:300px}
  .releaseTeaser_inner{flex-direction:column}
  .releaseTeaser_imgSide{min-height:260px}
  .ablauf_grid{grid-template-columns:repeat(2,1fr)}
  .formBlock_row{grid-template-columns:1fr}
}

@media (max-width:767px){
  .nav_linksSide{display:none}
  .nav_burger{display:flex}
  .hero_heading{font-size:2.5rem}
  .hero_contentBox{padding:100px 25px 70px}
  .hero_subtext{font-size:14px}
  .catGrid_row{flex-direction:column}
  .prodGrid_main{grid-template-columns:repeat(2,1fr);gap:12px}
  .prodCard_name{font-size:13px}
  .prodCard_nowPrice{font-size:15px}
  .prodModal_inner{flex-direction:column}
  .prodModal_imgSide{min-height:220px;max-height:300px}
  .prodModal_infoSide{padding:20px}
  .trustRow_inner{grid-template-columns:1fr;gap:4px}
  .newsletter_inner{flex-direction:column;text-align:center;padding:35px 25px}
  .newsletter_formRow{flex-direction:column;width:100%}
  .newsletter_input{min-width:unset;border-right:1px solid #444;border-bottom:none}
  .ftr_upper{flex-direction:column;gap:30px}
  .formRow_double{flex-direction:column;gap:0}
  .featBanner_textSide{padding:30px 25px}
  .brandStory_txtCol{padding:30px 25px}
  .releaseTeaser_textSide{padding:30px 25px}
  .ablauf_grid{grid-template-columns:1fr 1fr;gap:4px}
  .stimmen_grid{grid-template-columns:1fr;gap:4px}
  .fehler_grid{grid-template-columns:1fr;gap:4px}
  .faqGrid{grid-template-columns:1fr}
  .faqGrid_cardWide{grid-column:auto}
  .orderStrip{flex-direction:column;align-items:stretch}
  .payTile_row{flex-direction:column}
  .ckModal_btns{flex-direction:column}
}

@media (max-width:480px){
  .prodGrid_main{grid-template-columns:1fr;gap:15px}
  .hero_heading{font-size:2rem}
  .hero_btnRow{flex-direction:column}
  .hero_btnPrimary,.hero_btnOutline{text-align:center}
  .sizeGuide_inner{padding:30px 20px}
  .catGrid_labelTxt{font-size:14px}
  .ablauf_grid{grid-template-columns:1fr}
  .ablauf_step{padding:24px 20px}
  .cartModal_box{width:100%}
}
.subpageHero{
  max-width:1300px;
  margin:0 auto;
  padding:60px 20px 40px;
  text-align:center;
}
.subpageHero_inner{max-width:640px;margin:0 auto}
.subpageHero_overline{
  font-family:'Space Mono',monospace;
  font-size:10px;
  letter-spacing:4px;
  color:rgba(255,255,255,.35);
  text-transform:uppercase;
  margin-bottom:14px;
}
.subpageHero_title{
  font-family:'Instrument Serif',serif;
  font-size:2.75rem;
  font-weight:400;
  font-style:italic;
  color:#fff;
  line-height:1.15;
  margin-bottom:16px;
}
.subpageHero_desc{
  font-size:15px;
  font-weight:300;
  color:rgba(255,255,255,.55);
  line-height:1.7;
}


.rlsSection{
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
}
.rlsSection_inner{}
.rlsSection_split{
  display:flex;
  gap:0;
  background:#1a1a1a;
  overflow:hidden;
}
.rlsSection_splitReverse{flex-direction:row-reverse}
.rlsSection_imgSide{
  flex:1;
  min-height:380px;
  overflow:hidden;
}
.rlsSection_img{
  width:100%;height:100%;
  object-fit:cover;
}
.rlsSection_txtSide{
  flex:1.2;
  padding:42px 38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.rlsSection_overline{
  font-family:'Space Mono',monospace;
  font-size:10px;
  letter-spacing:3px;
  color:rgba(255,255,255,.4);
  margin-bottom:0.875rem;
  text-transform:uppercase;
}
.rlsSection_heading{
  font-family:'Instrument Serif',serif;
  font-size:28px;
  font-weight:400;
  color:#fff;
  line-height:1.25;
  margin-bottom:22px;
}
.rlsSection_centerHead{
  font-family:'Space Mono',monospace;
  font-size:20px;
  font-weight:700;
  letter-spacing:5px;
  text-transform:uppercase;
  text-align:center;
  color:#fff;
  padding:10px 0 1.5rem;
}
.rlsSection_p{
  font-size:14px;
  font-weight:300;
  color:rgba(255,255,255,.6);
  line-height:1.8;
  margin-bottom:10px;
}
.rlsSection_note{
  font-size:12px;
  color:rgba(255,255,255,.3);
  font-weight:300;
  line-height:1.65;
  margin-top:16px;
}


.rlsCalendar{}
.rlsCal_row{
  display:flex;
  align-items:baseline;
  gap:14px;
  padding:11px 0;
  border-bottom:1px solid #2a2a2a;
}
.rlsCal_date{
  font-family:'Space Mono',monospace;
  font-size:11px;
  color:rgba(255,255,255,.35);
  letter-spacing:.5px;
  min-width:110px;
  flex-shrink:0;
}
.rlsCal_name{
  font-size:14px;
  font-weight:500;
  color:#fff;
  flex:1;
}
.rlsCal_price{
  font-family:'Space Mono',monospace;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.7);
  flex-shrink:0;
}


.rlsBrandGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:4px;
}
.rlsBrand_card{
  background:#1a1a1a;
  padding:30px 28px;
}
.rlsBrand_name{
  font-family:'Space Mono',monospace;
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:12px;
}
.rlsBrand_txt{
  font-size:13px;
  font-weight:300;
  color:rgba(255,255,255,.5);
  line-height:1.75;
}


.rlsCta_block{
  background:#1a1a1a;
  padding:45px 40px;
  text-align:center;
}
.rlsCta_title{
  font-family:'Instrument Serif',serif;
  font-size:26px;
  font-weight:400;
  color:#fff;
  margin-bottom:12px;
}
.rlsCta_txt{
  font-size:14px;
  font-weight:300;
  color:rgba(255,255,255,.55);
  line-height:1.7;
  max-width:560px;
  margin:0 auto 22px;
}
.rlsCta_row{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-bottom:24px;
  flex-wrap:wrap;
}
.rlsCta_phone,.rlsCta_mail{
  font-size:14px;
  font-weight:500;
  color:rgba(255,255,255,.7);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.rlsCta_phone i,.rlsCta_mail i{font-size:16px;color:rgba(255,255,255,.4)}
.rlsCta_btn{
  display:inline-block;
  background:#fff;
  color:#111;
  padding:13px 30px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:background .15s;
}
.rlsCta_btn:hover{background:#ddd;opacity:1}


.legalPage_wrap{
  max-width:720px;
  margin:0 auto;
  padding:50px 28px 60px;
}
.legalPage_wrap h1{
  font-family:'Space Mono',monospace;
  font-size:20px;
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:2rem;
  padding-bottom:14px;
  border-bottom:1px solid #333;
}
.legalPage_wrap h2{
  font-size:13px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-top:28px;
  margin-bottom:10px;
}
.legalPage_wrap h3{
  font-size:11px;
  font-weight:300;
  color:rgba(255,255,255,.25);
  margin-top:2rem;
}
.legalPage_wrap p{
  font-size:14px;
  font-weight:300;
  color:rgba(255,255,255,.55);
  line-height:1.85;
  margin-bottom:8px;
}
.legalPage_wrap a{
  color:#fff;
  text-decoration:underline;
}


@media (max-width:1024px){
  .rlsSection_split,.rlsSection_splitReverse{flex-direction:column}
  .rlsSection_imgSide{min-height:280px}
  .rlsBrandGrid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:767px){
  .subpageHero_title{font-size:2rem}
  .subpageHero{padding:40px 20px 28px}
  .rlsSection_txtSide{padding:28px 24px}
  .rlsBrandGrid{grid-template-columns:1fr}
  .rlsCal_row{flex-wrap:wrap;gap:6px 14px}
  .rlsCal_date{min-width:auto}
  .rlsCta_block{padding:35px 24px}
  .legalPage_wrap{padding:35px 18px 45px}
  .legalPage_wrap h1{font-size:17px;letter-spacing:3px}
}