/* =========================================================
   DEEZ WORLD — CLASSIC INLINE ZINE / MAGAZINE FEEL
   ========================================================= */

.exc-deez-page{
  background:#e9e5da;
  color:#111;
}


/* HIDE EXC FLOATING NAV ON DEEZ PAGE */

body.page-template-page-deez .exc-floating-nav-wrap,
body.page-id-0 .exc-floating-nav-wrap{
  display:none!important;
}


/* =========================================================
   DEEZ MASTHEAD
   ========================================================= */

.deez-masthead{
  position:sticky;
  top:0;
  z-index:9999;

  width:100%;

  background:#111;
  color:#f3efe4;

  border-bottom:3px solid #111;
}

.deez-masthead-inner{
  width:min(calc(100% - 32px),1400px);
  margin:0 auto;

  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:26px;

  min-height:72px;
}

.deez-wordmark{
  display:inline-flex;
  align-items:center;
  gap:10px;

  text-decoration:none;
  color:#fff;

  white-space:nowrap;
}

.deez-wordmark-main{
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:2.6rem;
  line-height:1;
  letter-spacing:-.04em;
}

.deez-wordmark-sub{
  font-family:Arial, Helvetica, sans-serif;
  font-size:.78rem;
  font-weight:900;
  line-height:1;

  letter-spacing:.06em;
  text-transform:uppercase;

  color:#fff;
}

.deez-nav{
  display:flex;
  justify-content:center;
  gap:26px;
  flex-wrap:wrap;
}

.deez-nav a,
.deez-cart-link{
  color:#f3efe4;
  text-decoration:none;

  font-family:Arial, Helvetica, sans-serif;
  font-size:.78rem;
  font-weight:900;

  letter-spacing:.08em;
  text-transform:uppercase;
}

.deez-nav a:hover,
.deez-cart-link:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

.deez-cart-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.deez-cart-link span{
  display:grid;
  place-items:center;

  min-width:24px;
  height:24px;

  padding:0 7px;

  border-radius:999px;

  background:#f3efe4;
  color:#111;
}


/* =========================================================
   HERO
   ========================================================= */

.deez-hero{
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(0,0,0,.025) 1px,
      transparent 1px
    ),
    #e9e5da;

  background-size:28px 28px;
}

.deez-hero-paper{
  width:min(calc(100% - 32px),1400px);
  margin:0 auto;

  min-height:calc(100vh - 72px);

  padding:24px 0 42px;
}

.deez-issue-strip{
  display:flex;
  justify-content:space-between;
  gap:24px;

  padding:8px 0 10px;

  border-top:4px solid #111;
  border-bottom:1px solid #111;

  font-family:"Courier New", monospace;
  font-size:.70rem;
  font-weight:700;

  letter-spacing:.08em;
}

.deez-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
  gap:44px;

  align-items:start;

  padding:42px 0 32px;
}

.deez-hero-copy{
  position:relative;
}

.deez-eyebrow{
  margin:0 0 12px;

  font-family:"Courier New", monospace;
  font-size:.78rem;
  font-weight:700;

  letter-spacing:.08em;
}


/* CLEANER EDITORIAL DEEZ HEADLINE */

.deez-hero h1{
  margin:0 0 8px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(6.8rem,14vw,13rem);
  line-height:.82;

  letter-spacing:.03em;

  color:#111;

  transform:none;

  text-transform:uppercase;
}


.deez-hero-subhead{
  display:flex;
  flex-wrap:wrap;

  gap:6px 14px;

  margin-top:16px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(1.9rem,3.6vw,3.6rem);
  line-height:.96;

  letter-spacing:.015em;

  text-transform:uppercase;
}

.deez-hero-subhead span:nth-child(2){
  text-decoration:line-through;
  text-decoration-thickness:5px;
}

.deez-hero-blurb{
  max-width:700px;

  margin:30px 0 0;

  font-family:Arial, Helvetica, sans-serif;
  font-size:1.05rem;
  line-height:1.6;
}

.deez-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-top:28px;
}

.deez-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:50px;

  padding:0 18px;

  border:3px solid #111;

  font-family:Arial, Helvetica, sans-serif;
  font-size:.80rem;
  font-weight:900;

  letter-spacing:.06em;

  text-decoration:none;
  text-transform:uppercase;

  transition:
    transform .14s ease,
    box-shadow .14s ease,
    background .14s ease,
    color .14s ease;
}

.deez-button-primary{
  background:#111;
  color:#f3efe4;
}

.deez-button-secondary{
  background:transparent;
  color:#111;
}

.deez-button:hover{
  transform:translate(-3px,-3px);
  box-shadow:6px 6px 0 #111;
}

.deez-button-primary:hover{
  background:#f3efe4;
  color:#111;
}

.deez-collab-note{
  margin:34px 0 0;

  font-family:"Courier New", monospace;
  font-size:.68rem;
  font-weight:700;

  letter-spacing:.10em;
}


/* =========================================================
   HERO ART
   ========================================================= */

.deez-hero-art{
  position:relative;

  padding-top:24px;
}

.deez-logo-panel{
  position:relative;

  min-height:420px;

  display:grid;
  place-items:center;

  padding:32px;

  border:4px solid #111;

  background:#f5f1e7;

  box-shadow:12px 12px 0 #111;

  overflow:hidden;
}

.deez-logo-panel::before{
  content:"";

  position:absolute;
  inset:0;

  opacity:.18;

  pointer-events:none;

  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,.12) 0 1px,
      transparent 1px 4px
    );
}

.deez-logo-panel img{
  position:relative;
  z-index:1;

  display:block;

  width:min(100%,620px);
  height:auto;

  filter:grayscale(1) contrast(1.35);
}

.deez-art-caption{
  margin-top:14px;

  font-family:"Courier New", monospace;
  font-size:.70rem;
  font-weight:700;

  letter-spacing:.08em;
}

.deez-stamp{
  position:absolute;

  right:-12px;
  bottom:-30px;

  width:150px;
  height:150px;

  display:grid;
  place-items:center;

  padding:16px;

  border:4px solid #111;
  border-radius:50%;

  background:#e9e5da;

  color:#111;

  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:1.4rem;
  line-height:.9;

  text-align:center;
  text-transform:uppercase;

  transform:rotate(-11deg);
}


/* =========================================================
   BOTTOM RULE
   ========================================================= */

.deez-bottom-rule{
  display:flex;
  justify-content:space-between;
  gap:24px;

  padding-top:12px;

  border-top:4px solid #111;

  font-family:"Courier New", monospace;
  font-size:.68rem;
  font-weight:700;

  letter-spacing:.08em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:980px){

  .deez-masthead-inner{
    grid-template-columns:auto auto;
  }

  .deez-nav{
    grid-column:1 / -1;
    order:3;

    justify-content:flex-start;

    padding-bottom:14px;
  }

  .deez-hero-grid{
    grid-template-columns:1fr;
  }

  .deez-hero h1{
    font-size:clamp(6.4rem,20vw,11rem);
    letter-spacing:.025em;
  }

  .deez-logo-panel{
    min-height:360px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:620px){

  .deez-masthead-inner{
    width:calc(100% - 20px);
    gap:10px;

    min-height:62px;
  }

  .deez-wordmark-main{
    font-size:2rem;
  }

  .deez-wordmark-sub{
    font-size:.62rem;
  }

  .deez-cart-link{
    justify-self:end;
  }

  .deez-nav{
    gap:12px 16px;
    padding-bottom:10px;
  }

  .deez-nav a{
    font-size:.67rem;
  }

  .deez-hero-paper{
    width:calc(100% - 20px);
    padding-top:14px;
  }

  .deez-issue-strip{
    display:grid;
    gap:4px;

    font-size:.60rem;
  }

  .deez-hero-grid{
    padding-top:28px;
    gap:34px;
  }

  .deez-hero h1{
    font-size:clamp(5rem,23vw,7.8rem);
    letter-spacing:.02em;
  }

  .deez-hero-subhead{
    font-size:clamp(1.7rem,9vw,2.8rem);
  }

  .deez-hero-blurb{
    font-size:.96rem;
  }

  .deez-hero-actions{
    flex-direction:column;
  }

  .deez-button{
    width:100%;
  }

  .deez-logo-panel{
    min-height:280px;
    padding:18px;
    box-shadow:7px 7px 0 #111;
  }

  .deez-stamp{
    width:105px;
    height:105px;

    right:-4px;
    bottom:-24px;

    font-size:1rem;
  }

  .deez-bottom-rule{
    display:grid;
    gap:4px;

    font-size:.60rem;
  }
}

/* PRODUCT 001 — SESSION SAVER */

.deez-product-feature{
  position:relative;
  background:#111;
  color:#f3efe4;
  padding:72px 0 82px;
  overflow:hidden;
}

.deez-product-paper{
  width:min(calc(100% - 32px),1400px);
  margin:0 auto;
}

.deez-product-kicker{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:10px 0;
  border-top:4px solid #f3efe4;
  border-bottom:1px solid rgba(243,239,228,.55);
  font-family:"Courier New", monospace;
  font-size:.70rem;
  font-weight:700;
  letter-spacing:.10em;
  text-transform:uppercase;
}

.deez-product-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  gap:64px;
  align-items:center;
  padding-top:52px;
}

.deez-product-photo-wrap{
  min-width:0;
}

.deez-product-photo{
  position:relative;
  background:#e9e5da;
  border:3px solid #f3efe4;
  box-shadow:12px 12px 0 #f3efe4;
  overflow:hidden;
  transform:rotate(-1deg);
}

.deez-product-photo img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:9 / 10;
  object-fit:cover;
  object-position:center 45%;
}

.deez-product-number{
  position:absolute;
  right:20px;
  bottom:12px;
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:clamp(4rem,7vw,7rem);
  line-height:.8;
  color:#fff;
  opacity:.85;
  mix-blend-mode:difference;
}

.deez-product-caption{
  margin:22px 0 0;
  font-family:"Courier New", monospace;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.08em;
}

.deez-product-info{
  min-width:0;
}

.deez-product-label{
  margin:0 0 14px;
  font-family:"Courier New", monospace;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.11em;
}

.deez-product-info h2{
  margin:0;
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:clamp(5rem,9vw,9rem);
  line-height:.78;
  letter-spacing:.015em;
  text-transform:uppercase;
}

.deez-product-tagline{
  margin:24px 0 0;
  max-width:540px;
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:clamp(1.5rem,2.6vw,2.5rem);
  line-height:1;
  letter-spacing:.025em;
  text-transform:uppercase;
}

.deez-product-rule{
  width:100%;
  height:4px;
  margin:30px 0;
  background:#f3efe4;
}

.deez-product-description{
  max-width:600px;
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  font-size:1.05rem;
  line-height:1.65;
}

.deez-spec-sheet{
  margin-top:34px;
  border-top:1px solid rgba(243,239,228,.6);
}

.deez-spec-row{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:20px;
  padding:11px 0;
  border-bottom:1px solid rgba(243,239,228,.35);
}

.deez-spec-row span{
  font-family:"Courier New", monospace;
  font-size:.68rem;
  letter-spacing:.08em;
  opacity:.65;
}

.deez-spec-row strong{
  font-family:Arial, Helvetica, sans-serif;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.06em;
}

.deez-product-buy{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  align-items:stretch;
  margin-top:36px;
}

.deez-product-price{
  min-width:110px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border:3px solid #f3efe4;
  padding:10px 16px;
}

.deez-product-price small{
  font-family:"Courier New", monospace;
  font-size:.58rem;
  letter-spacing:.10em;
}

.deez-product-price strong{
  font-family:Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size:2rem;
  line-height:1.1;
}

.deez-buy-button{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:74px;
  padding:0 24px;
  background:#f3efe4;
  border:3px solid #f3efe4;
  color:#111;
  text-decoration:none;
  font-family:Arial, Helvetica, sans-serif;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:8px 8px 0 rgba(243,239,228,.22);
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
}

.deez-buy-button:hover{
  transform:translate(-5px,-5px);
  box-shadow:13px 13px 0 rgba(243,239,228,.28);
  background:#111;
  color:#f3efe4;
}

.deez-buy-arrow{
  font-size:2rem;
  line-height:1;
  transition:transform .14s ease;
}

.deez-buy-button:hover .deez-buy-arrow{
  transform:translateX(6px);
}

.deez-product-fineprint{
  margin:24px 0 0;
  font-family:"Courier New", monospace;
  font-size:.64rem;
  font-weight:700;
  letter-spacing:.11em;
  opacity:.65;
}

@media (max-width:980px){
  .deez-product-feature{
    padding:54px 0 64px;
  }

  .deez-product-grid{
    grid-template-columns:1fr;
    gap:54px;
  }

  .deez-product-photo{
    max-width:720px;
  }

  .deez-product-photo img{
    aspect-ratio:auto;
  }

  .deez-product-info{
    max-width:720px;
  }
}

@media (max-width:620px){
  .deez-product-feature{
    padding:40px 0 52px;
  }

  .deez-product-paper{
    width:calc(100% - 20px);
  }

  .deez-product-kicker{
    display:grid;
    gap:5px;
    font-size:.58rem;
  }

  .deez-product-grid{
    padding-top:30px;
    gap:42px;
  }

  .deez-product-photo{
    box-shadow:6px 6px 0 #f3efe4;
  }

  .deez-product-info h2{
    font-size:clamp(4rem,22vw,6rem);
  }

  .deez-product-description{
    font-size:.95rem;
  }

  .deez-spec-row{
    grid-template-columns:100px 1fr;
    gap:12px;
  }

  .deez-product-buy{
    grid-template-columns:1fr;
  }

  .deez-product-price{
    min-height:70px;
  }

  .deez-buy-button{
    min-height:66px;
  }
}


/* =========================================================
   DEEZ SHOP — CURRENT DROP
   ========================================================= */

.deez-shop-section{
  position:relative;

  padding:72px 0 84px;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(0,0,0,.025) 1px,
      transparent 1px
    ),
    #e9e5da;

  background-size:28px 28px;

  color:#111;
}

.deez-shop-paper{
  width:min(calc(100% - 32px),1400px);
  margin:0 auto;
}


/* TOP ISSUE STRIP */

.deez-shop-strip{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;

  padding:9px 0 10px;

  border-top:4px solid #111;
  border-bottom:1px solid #111;

  font-family:"Courier New", monospace;
  font-size:.68rem;
  font-weight:700;

  letter-spacing:.09em;
  text-transform:uppercase;
}


/* HEADING */

.deez-shop-heading{
  display:grid;

  grid-template-columns:minmax(0,.8fr) minmax(320px,1.2fr);

  gap:60px;

  align-items:end;

  padding:42px 0 38px;
}

.deez-shop-eyebrow{
  margin:0 0 10px;

  font-family:"Courier New", monospace;
  font-size:.70rem;
  font-weight:700;

  letter-spacing:.10em;
  text-transform:uppercase;
}

.deez-shop-heading h2{
  margin:0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(5rem,10vw,10rem);
  line-height:.76;

  letter-spacing:.01em;

  text-transform:uppercase;
}

.deez-shop-intro{
  max-width:700px;

  margin:0 0 8px;

  font-family:Arial, Helvetica, sans-serif;
  font-size:1.05rem;

  line-height:1.65;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.deez-shop-grid{
  display:grid;

  grid-template-columns:repeat(3,minmax(0,1fr));

  gap:28px;
}


/* CARD */

.deez-shop-card{
  min-width:0;

  border-top:4px solid #111;

  padding-top:12px;
}

.deez-shop-card-image{
  position:relative;

  display:block;

  aspect-ratio:1 / 1;

  overflow:hidden;

  border:3px solid #111;

  background:#f5f1e7;

  box-shadow:8px 8px 0 #111;

  color:#111;

  text-decoration:none;

  transition:
    transform .14s ease,
    box-shadow .14s ease;
}

.deez-shop-card:nth-child(3n + 1)
.deez-shop-card-image{
  transform:rotate(-.55deg);
}

.deez-shop-card:nth-child(3n + 2)
.deez-shop-card-image{
  transform:rotate(.35deg);
}

.deez-shop-card:nth-child(3n)
.deez-shop-card-image{
  transform:rotate(-.2deg);
}

.deez-shop-card-image:hover{
  transform:translate(-3px,-3px) rotate(0deg);

  box-shadow:12px 12px 0 #111;
}

.deez-shop-product-image{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;
}

.deez-shop-no-image{
  width:100%;
  height:100%;

  display:grid;
  place-items:center;

  font-family:"Courier New", monospace;
  font-size:.72rem;
  font-weight:700;

  letter-spacing:.10em;
}


/* CARD NUMBER */

.deez-shop-card-index{
  position:absolute;

  right:12px;
  bottom:6px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(3rem,5vw,5.2rem);
  line-height:.8;

  color:#fff;

  mix-blend-mode:difference;

  opacity:.8;
}


/* BODY */

.deez-shop-card-body{
  padding:24px 2px 0;
}

.deez-shop-card-status{
  display:flex;
  justify-content:space-between;
  gap:16px;

  padding-bottom:9px;

  border-bottom:1px solid #111;

  font-family:"Courier New", monospace;
  font-size:.61rem;
  font-weight:700;

  letter-spacing:.08em;
  text-transform:uppercase;
}

.deez-shop-card h3{
  margin:18px 0 24px;
}

.deez-shop-card h3 a{
  color:#111;

  text-decoration:none;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(2.2rem,3vw,3.5rem);
  line-height:.88;

  text-transform:uppercase;
}


/* PRICE + BUTTON */

.deez-shop-card-bottom{
  display:grid;

  grid-template-columns:auto 1fr;

  gap:12px;

  align-items:stretch;
}

.deez-shop-price{
  min-width:92px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:10px 14px;

  border:3px solid #111;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:1.45rem;
}

.deez-shop-price del{
  display:none;
}

.deez-shop-price ins{
  text-decoration:none;
}

.deez-shop-cta{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:14px;

  min-height:58px;

  padding:0 18px;

  border:3px solid #111;

  background:#111;
  color:#f3efe4;

  text-decoration:none;

  font-family:"Courier New", monospace;
  font-size:.72rem;
  font-weight:900;

  letter-spacing:.08em;
  text-transform:uppercase;

  box-shadow:6px 6px 0 rgba(17,17,17,.20);

  transition:
    transform .14s ease,
    box-shadow .14s ease,
    background .14s ease,
    color .14s ease;
}

.deez-shop-cta span:last-child{
  font-size:1.5rem;
}

.deez-shop-cta:hover{
  transform:translate(-3px,-3px);

  background:#f3efe4;
  color:#111;

  box-shadow:9px 9px 0 #111;
}


/* EMPTY STATE */

.deez-shop-empty{
  min-height:240px;

  display:grid;
  place-items:center;

  align-content:center;
  gap:8px;

  border:4px solid #111;

  text-align:center;
}

.deez-shop-empty strong{
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:3rem;
}

.deez-shop-empty span{
  font-family:"Courier New", monospace;
  font-size:.68rem;
  font-weight:700;
}


/* BOTTOM RULE */

.deez-shop-footer-rule{
  display:flex;
  justify-content:space-between;

  gap:24px;

  margin-top:64px;
  padding-top:10px;

  border-top:4px solid #111;

  font-family:"Courier New", monospace;
  font-size:.64rem;
  font-weight:700;

  letter-spacing:.08em;
  text-transform:uppercase;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:980px){

  .deez-shop-section{
    padding:56px 0 68px;
  }

  .deez-shop-heading{
    grid-template-columns:1fr;

    gap:24px;
  }

  .deez-shop-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:620px){

  .deez-shop-section{
    padding:42px 0 52px;
  }

  .deez-shop-paper{
    width:calc(100% - 20px);
  }

  .deez-shop-strip{
    display:grid;

    gap:4px;

    font-size:.57rem;
  }

  .deez-shop-heading{
    padding:30px 0;
  }

  .deez-shop-heading h2{
    font-size:clamp(4.8rem,27vw,7rem);
  }

  .deez-shop-intro{
    font-size:.95rem;
  }

  .deez-shop-grid{
    grid-template-columns:1fr;

    gap:44px;
  }

  .deez-shop-card-bottom{
    grid-template-columns:1fr;
  }

  .deez-shop-price{
    min-height:58px;
  }

  .deez-shop-footer-rule{
    display:grid;

    gap:4px;

    margin-top:52px;

    font-size:.57rem;
  }

}


/* =========================================================
   DEEZ BRAND SWITCHER
   ========================================================= */

.deez-brand-cluster{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:0;
  white-space:nowrap;
}

.deez-brand-switch-divider{
  width:1px;
  height:30px;
  flex:0 0 1px;
  background:rgba(243,239,228,.32);
}

.deez-brand-switch-exc{
  display:inline-flex;
  align-items:center;
  gap:7px;

  color:rgba(243,239,228,.70);
  text-decoration:none;

  font-family:Arial, Helvetica, sans-serif;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;

  opacity:.78;

  transition:
    opacity .14s ease,
    transform .14s ease,
    color .14s ease;
}

.deez-brand-switch-exc img{
  display:block;
  width:28px;
  height:28px;
  object-fit:contain;

  filter:grayscale(1) brightness(4);
  opacity:.82;
}

.deez-brand-switch-exc:hover{
  color:#fff;
  opacity:1;
  transform:translateY(-2px);
}

.deez-brand-switch-exc:hover img{
  opacity:1;
}

@media (max-width:620px){

  .deez-brand-cluster{
    gap:8px;
  }

  .deez-brand-switch-divider{
    height:24px;
  }

  .deez-brand-switch-exc{
    gap:5px;
    font-size:.48rem;
  }

  .deez-brand-switch-exc img{
    width:22px;
    height:22px;
  }

  .deez-brand-switch-exc span{
    display:none;
  }

}


/* =========================================================
   DEEZ STORY — WHO / WHY
   Replaces the old duplicate black Session Saver feature.
   ========================================================= */

.deez-story-section{
  position:relative;

  padding:76px 0 82px;

  background:#111;
  color:#f3efe4;

  overflow:hidden;
}

.deez-story-section::before{
  content:"DEEZ";

  position:absolute;

  right:-.04em;
  bottom:-.20em;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(12rem,30vw,34rem);
  line-height:.72;

  letter-spacing:-.04em;

  color:rgba(243,239,228,.025);

  pointer-events:none;
}

.deez-story-paper{
  position:relative;
  z-index:1;

  width:min(calc(100% - 32px),1400px);
  margin:0 auto;
}

.deez-story-strip{
  display:flex;
  justify-content:space-between;
  gap:24px;

  padding:9px 0 10px;

  border-top:4px solid #f3efe4;
  border-bottom:1px solid rgba(243,239,228,.45);

  font-family:"Courier New", monospace;
  font-size:.66rem;
  font-weight:700;

  letter-spacing:.09em;
  text-transform:uppercase;
}

.deez-story-grid{
  display:grid;

  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);

  gap:76px;

  align-items:start;

  padding-top:50px;
}


/* LEFT — WHO */

.deez-story-main{
  min-width:0;
}

.deez-story-kicker{
  margin:0 0 14px !important;

  font-family:"Courier New", monospace !important;
  font-size:.70rem !important;
  font-weight:700 !important;

  letter-spacing:.12em !important;
  text-transform:uppercase;
}

.deez-story-main h2{
  margin:0 0 34px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(5.5rem,10vw,11rem);
  line-height:.76;

  letter-spacing:.005em;

  color:#f3efe4;

  text-transform:uppercase;
}

.deez-story-main p{
  max-width:760px;

  margin:0 0 18px;

  color:#f3efe4;

  font-family:Arial, Helvetica, sans-serif;
  font-size:1.02rem;

  line-height:1.65;
}

.deez-story-lead{
  padding-top:18px;

  border-top:1px solid rgba(243,239,228,.45);

  font-size:1.12rem !important;
}

.deez-story-lead strong{
  font-weight:900;
}

.deez-story-punch{
  margin:32px 0 22px !important;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif !important;

  font-size:clamp(2.8rem,5vw,5rem) !important;
  line-height:.9 !important;

  letter-spacing:.02em;

  text-transform:uppercase;

  transform:rotate(-1deg);
}


/* RIGHT — WHY */

.deez-story-why{
  min-width:0;

  margin-top:10px;

  border:4px solid #f3efe4;

  background:#111;

  box-shadow:10px 10px 0 #f3efe4;
}

.deez-story-why-head{
  padding:24px;

  border-bottom:4px solid #f3efe4;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:clamp(2.8rem,4.5vw,4.8rem);
  line-height:.82;

  text-transform:uppercase;
}

.deez-story-reason{
  display:grid;

  grid-template-columns:58px 1fr;

  gap:18px;

  padding:22px 24px;

  border-bottom:1px solid rgba(243,239,228,.38);
}

.deez-story-reason > span{
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:2.4rem;
  line-height:1;

  opacity:.55;
}

.deez-story-reason p{
  margin:0;

  font-family:"Courier New", monospace;
  font-size:.78rem;
  font-weight:700;

  line-height:1.55;
}

.deez-story-collab{
  padding:26px 24px 28px;

  background:#f3efe4;
  color:#111;
}

.deez-story-collab strong{
  display:block;

  margin-bottom:14px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size:1.8rem;
  line-height:.92;

  text-transform:uppercase;
}

.deez-story-collab span{
  display:block;

  font-family:"Courier New", monospace;
  font-size:.62rem;
  font-weight:700;

  line-height:1.5;

  letter-spacing:.07em;
  text-transform:uppercase;
}


/* =========================================================
   DEEZ STORY — TABLET
   ========================================================= */

@media (max-width:980px){

  .deez-story-section{
    padding:60px 0 68px;
  }

  .deez-story-grid{
    grid-template-columns:1fr;

    gap:52px;
  }

  .deez-story-main{
    max-width:900px;
  }

  .deez-story-why{
    max-width:760px;
  }

}


/* =========================================================
   DEEZ STORY — MOBILE
   ========================================================= */

@media (max-width:620px){

  .deez-story-section{
    padding:46px 0 54px;
  }

  .deez-story-paper{
    width:calc(100% - 20px);
  }

  .deez-story-strip{
    display:grid;

    gap:4px;

    font-size:.56rem;
  }

  .deez-story-grid{
    gap:38px;

    padding-top:34px;
  }

  .deez-story-main h2{
    font-size:clamp(4.8rem,25vw,7rem);
  }

  .deez-story-main p{
    font-size:.95rem;
  }

  .deez-story-why{
    box-shadow:6px 6px 0 #f3efe4;
  }

  .deez-story-reason{
    grid-template-columns:44px 1fr;

    gap:12px;

    padding:18px;
  }

  .deez-story-reason > span{
    font-size:1.9rem;
  }

  .deez-story-collab{
    padding:22px 18px 24px;
  }

}

/* =========================================================
   DEEZ HERO — REMOVE EXCESS CREAM SPACE
   ========================================================= */

.deez-hero-paper{
  min-height:0;
  padding-bottom:32px;
}

.deez-hero-grid{
  padding-bottom:20px;
}

.deez-bottom-rule{
  margin-top:8px;
}