@font-face{
  font-family:"Osnova Pro";
  font-weight:900;
  font-style:normal;
  font-display:block;
  src:url("/fonts/OsnovaProHeavy.woff2") format("woff2"),
      url("/fonts/OsnovaProHeavy.woff") format("woff");
}
@font-face{
  font-family:"Osnova Pro";
  font-weight:500;
  font-style:normal;
  font-display:swap;
  src:url("/fonts/OsnovaProMedium.woff2") format("woff2"),
      url("/fonts/OsnovaProMedium.woff") format("woff");
}

:root{
  --bg:#000;
  --fg:#fff;
  --muted:#9aa0a6;
  --steel-1:#cfd2d6;
  --steel-2:#7a7e84;
  --steel-3:#3a3d42;
  --hairline:rgba(255,255,255,.14);
  --steel-grad:linear-gradient(180deg,#e6e8ea 0%,#bfc3c8 18%,#8c9095 50%,#bfc3c8 82%,#e6e8ea 100%);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--fg)}
html{-webkit-text-size-adjust:100%}
body{
  font-family:"Osnova Pro","Helvetica Neue",Arial,sans-serif;
  font-weight:500;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
a:focus-visible{outline:2px solid var(--steel-1);outline-offset:3px}

main{
  display:flex;
  flex-direction:column;
  flex:1;
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:clamp(24px,5vw,72px) clamp(12px,4vw,56px) 0;
}

/* Hero / wordmark
   Sizes against the hero container width (cqi) so the dot of UNFILTERED.
   sits inside the gutters at every breakpoint. 14.6cqi is hand-tuned to
   the OsnovaProHeavy advance for "UNFILTERED." */
.hero{
  text-align:center;
  padding:clamp(24px,4vw,64px) 0 clamp(40px,6vw,88px);
  position:relative;
  container-type:inline-size;
}
.wordmark{
  margin:0;
  line-height:.86;
  font-weight:900;
  letter-spacing:-.03em;
  font-size:clamp(40px, 14.6cqi, 180px);
  white-space:nowrap;
  color:var(--fg);
  text-transform:uppercase;
  /* subtle steel highlight on the wordmark */
  background:var(--steel-grad);
  -webkit-background-clip:text;
          background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.04));
}
.tagline{
  margin:clamp(16px,2vw,28px) 0 0;
  font-size:clamp(11px,1vw,13px);
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--muted);
}
/* steel hairline divider beneath hero */
.hero::after{
  content:"";
  display:block;
  height:1px;
  margin:clamp(32px,5vw,72px) auto 0;
  width:min(560px,80%);
  background:linear-gradient(90deg,transparent 0%,var(--steel-1) 50%,transparent 100%);
  opacity:.55;
}

/* Products grid */
.products{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(20px,3vw,32px);
  padding:clamp(40px,6vw,72px) 0;
  width:100%;
  max-width:820px;
  margin:0 auto;
}
@media (min-width:760px){
  .products{
    grid-template-columns:repeat(2,1fr);
  }
}
.product{
  display:flex;
  flex-direction:column;
  background:#0a0a0a;
  border:1px solid var(--hairline);
  border-radius:2px;
  overflow:hidden;
  position:relative;
  width:100%;
  transition:border-color .35s ease;
}
.product::before{
  /* top steel stripe */
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:var(--steel-grad);
  z-index:2;
}
.product:hover{border-color:rgba(255,255,255,.28)}
.product-media{
  display:block;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#111;
}
.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.product:hover .product-media img{transform:scale(1.02)}
.product-body{
  padding:clamp(20px,2.5vw,32px);
  display:flex;
  flex-direction:column;
  gap:14px;
  border-top:1px solid var(--hairline);
}
.product-title{
  margin:0;
  font-weight:900;
  font-size:clamp(20px,2vw,28px);
  letter-spacing:.005em;
  text-transform:uppercase;
  line-height:1.05;
}
.product-meta{
  margin:0;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
}

/* Buy button — real brushed-nickel texture with rim bevel + darkened edges. */
.buy{
  margin-top:6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
  padding:20px 24px;
  color:#1a1a1a;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:14px;
  border:1px solid #1c1d1f;
  border-radius:2px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  cursor:pointer;
  background:
    /* rim lighting: bright top, dark bottom edge */
    linear-gradient(180deg,
      rgba(255,255,255,.55) 0%,
      rgba(255,255,255,.10) 12%,
      rgba(255,255,255,0)   28%,
      rgba(0,0,0,0)         62%,
      rgba(0,0,0,.20)       82%,
      rgba(0,0,0,.55)       100%),
    /* the actual brushed nickel texture, scaled & repeated to fill any width */
    url("/assets/unfiltered_steel.jpg") center/cover no-repeat #c9ccd0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.6),
    inset 1px 0 0 rgba(255,255,255,.3),
    inset -1px 0 0 rgba(0,0,0,.35),
    0 1px 0 rgba(255,255,255,.06),
    0 8px 22px rgba(0,0,0,.6);
  transition:transform .18s cubic-bezier(.2,.7,.2,1),
             filter .25s ease,
             box-shadow .25s ease;
}
.buy::before{
  /* hot specular highlight that travels on hover */
  content:"";
  position:absolute;
  top:0;bottom:0;
  left:-40%;
  width:40%;
  background:linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,.55) 45%,
    rgba(255,255,255,.85) 50%,
    rgba(255,255,255,.55) 55%,
    transparent 100%);
  transform:skewX(-18deg);
  pointer-events:none;
  z-index:1;
  transition:left .9s cubic-bezier(.2,.7,.2,1);
}
.buy:hover::before{left:120%}
.buy:hover{
  filter:brightness(1.05) contrast(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,.6),
    inset 1px 0 0 rgba(255,255,255,.35),
    inset -1px 0 0 rgba(0,0,0,.4),
    0 1px 0 rgba(255,255,255,.06),
    0 12px 28px rgba(0,0,0,.7);
}
.buy:active{
  transform:translateY(1px);
  filter:brightness(.94) contrast(1.05);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 0 rgba(0,0,0,.4),
    0 1px 3px rgba(0,0,0,.5);
}
.buy-label{
  position:relative;
  z-index:2;
  text-shadow:0 1px 0 rgba(255,255,255,.7);
}
.buy-arrow{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:linear-gradient(180deg,#1a1c20 0%,#0a0b0d 100%);
  color:#e6e8ea;
  font-size:14px;
  line-height:1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.5),
    0 1px 1px rgba(0,0,0,.3);
  transition:transform .25s cubic-bezier(.2,.7,.2,1);
}
.buy:hover .buy-arrow{transform:translateX(4px)}

/* Footer */
.foot{
  margin-top:auto;
  padding:clamp(24px,3vw,40px) 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  border-top:1px solid var(--hairline);
}
.foot a:hover{color:var(--fg)}
.foot-sep{opacity:.4}

@media (max-width:520px){
  .wordmark{letter-spacing:-.035em}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none!important;animation:none!important}
}
