/* ==========================================================================
   Blankline Coatings — site.css  v3
   Photographic, dark-first, one type family, no cards, no ornament.
   ========================================================================== */
:root {
  --black:#0B0B0C; --ink:#111113; --ink-2:#1A1A1D; --ink-3:#232326;
  --white:#F5F4F1; --grey:#A3A19C; --grey-2:#6B6966; --line-d:rgba(255,255,255,.12); --line-l:rgba(0,0,0,.12);
  --paper:#F5F4F1; --paper-2:#EBE9E4;
  --accent:#3B6BFF; --accent-2:#6A8EFF;
  --f:"Inter Tight", "Inter", "Helvetica Neue", Arial, sans-serif;
  --fb:"Inter", "Helvetica Neue", Arial, sans-serif;
  --gut:clamp(20px, 4.5vw, 72px);
  --max:1440px;
  color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--fb); font-size: 17px; line-height: 1.55; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
h1, h2, h3 { margin: 0; font-family: var(--f); font-weight: 500; letter-spacing: -.03em; line-height: 1.02; text-wrap: balance; }
h2 { font-size: clamp(2rem, 4.4vw, 3.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -.015em; line-height: 1.25; }
p { margin: 0 0 1em; max-width: 60ch; }
p:last-child { margin-bottom: 0; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.k { font-family: var(--fb); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); font-weight: 500; }
.tbc { color: var(--grey-2); border-bottom: 1px dotted var(--grey-2); }
.light .tbc { color: #8a8884; border-color: #8a8884; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

/* reveal on scroll */
.r { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.r.in { opacity: 1; transform: none; }
.r.d1 { transition-delay: .1s; } .r.d2 { transition-delay: .2s; } .r.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .r { opacity: 1; transform: none; } }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 22px; border-radius: 999px; font-family: var(--f); font-weight: 500; font-size: .95rem; letter-spacing: -.01em; border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn:active { transform: scale(.98); }
.btn--w { background: var(--white); color: var(--black); }
.btn--w:hover { background: #fff; }
.btn--o { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn--o:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--b { background: var(--accent); color: #fff; }
.btn--b:hover { background: var(--accent-2); }
.light .btn--o { border-color: rgba(0,0,0,.3); color: var(--black); }
.light .btn--o:hover { border-color: var(--black); background: rgba(0,0,0,.04); }
.btn svg { width: 16px; height: 16px; }

/* ---------- top ---------- */
.top { position: fixed; inset: 0 0 auto 0; z-index: 50; height: 72px; display: flex; align-items: center; transition: background .3s, backdrop-filter .3s, border-color .3s; border-bottom: 1px solid transparent; }
.top.scrolled { background: rgba(11,11,12,.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-color: var(--line-d); }
.top .wrap { width: 100%; display: flex; align-items: center; gap: 32px; }
.logo { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; }
.logo__mark { width: 22px; height: 22px; }
.logo__mark .frame { fill: none; stroke: currentColor; stroke-width: 2.2; }
.logo__mark .line { stroke: var(--accent); stroke-width: 3.2; }
.logo__name { font-family: var(--f); font-weight: 600; font-size: 1.05rem; letter-spacing: -.02em; }
.logo__name small { font-family: var(--fb); font-weight: 400; font-size: .78rem; color: var(--grey); margin-left: 6px; letter-spacing: 0; }
.top__nav { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.top__nav a { font-size: .92rem; color: rgba(245,244,241,.75); transition: color .2s; }
.top__nav a:hover { color: #fff; }
.top .btn { height: 40px; padding: 0 18px; font-size: .88rem; }
.burger { display: none; width: 40px; height: 40px; border: 0; background: none; color: #fff; cursor: pointer; padding: 0; }
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; margin: 4px auto; transition: transform .2s, opacity .2s; }
@media (max-width: 900px) {
  .top__nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(11,11,12,.96); padding: 8px var(--gut) 20px; border-bottom: 1px solid var(--line-d); }
  .top__nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-d); font-size: 1.05rem; }
  .top.is-open .top__nav { display: flex; }
  .top .btn { display: none; }
  .burger { display: block; }
  .top.is-open .burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .top.is-open .burger span:nth-child(2) { opacity: 0; }
  .top.is-open .burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; animation: kb 18s ease-out forwards; }
@keyframes kb { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__shade { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,0) 30%, rgba(11,11,12,0) 45%, rgba(11,11,12,.85) 100%),
  linear-gradient(90deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,0) 60%); }
.hero .wrap { width: 100%; padding-bottom: clamp(36px, 6vh, 72px); padding-top: 140px; }
.hero h1 { font-size: clamp(2.5rem, 5.1vw, 5rem); max-width: 14ch; font-weight: 500; }
.hero__sub { margin: 26px 0 32px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(245,244,241,.8); max-width: 48ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__facts { margin-top: clamp(40px, 7vh, 80px); padding-top: 20px; border-top: 1px solid var(--line-d); display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.hero__facts b { display: block; font-family: var(--f); font-weight: 500; font-size: 1.15rem; letter-spacing: -.02em; margin-bottom: 4px; }
.hero__facts span { font-size: .84rem; color: var(--grey); }
@media (max-width: 900px) { .hero__facts { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ---------- sections ---------- */
.sec { padding-block: clamp(80px, 11vw, 160px); }
.light { background: var(--paper); color: var(--black); color-scheme: light; }
.light .k { color: #6b6966; }
.dark { background: var(--black); }
.sec__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(40px, 6vw, 80px); }
.sec__head p { font-size: 1.15rem; color: var(--grey); }
.light .sec__head p { color: #4a4845; }
@media (max-width: 900px) { .sec__head { grid-template-columns: 1fr; } }

/* statement */
.statement { font-family: var(--f); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 3.2rem); letter-spacing: -.03em; line-height: 1.12; max-width: 24ch; }
.statement em { font-style: normal; color: var(--grey-2); }
.cols3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(24px, 4vw, 56px); margin-top: clamp(48px, 7vw, 96px); padding-top: 32px; border-top: 1px solid var(--line-l); }
.cols3 h3 { margin: 10px 0 10px; }
.cols3 p { font-size: .98rem; color: #4a4845; }
@media (max-width: 900px) { .cols3 { grid-template-columns: 1fr; } }

/* product: tin */
.tin { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 100svh; }
.tin__img { position: relative; overflow: hidden; }
.tin__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tin__text { padding: clamp(48px, 8vw, 120px) var(--gut); display: flex; flex-direction: column; justify-content: center; }
.tin__text h2 { margin: 14px 0 22px; }
.tin__text p { color: var(--grey); font-size: 1.1rem; }
.spec { list-style: none; margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line-d); max-width: 520px; }
.spec li { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-d); font-size: .95rem; }
.spec li span:first-child { color: var(--grey); }
@media (max-width: 900px) { .tin { grid-template-columns: 1fr; min-height: 0; } .tin__img { aspect-ratio: 4/3; } }

/* range list */
.rows { border-top: 1px solid var(--line-l); }
.row { display: grid; grid-template-columns: 64px minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.3fr); gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line-l); align-items: baseline; transition: background .2s; }
.row:hover { background: rgba(0,0,0,.025); }
.row .n { font-family: var(--f); color: #9a9893; font-size: 1rem; }
.row h3 { font-size: 1.45rem; }
.row h3 small { display: block; font-family: var(--fb); font-size: .9rem; font-weight: 400; color: #6b6966; margin-top: 4px; letter-spacing: 0; }
.row .m { font-size: .9rem; color: #4a4845; line-height: 1.7; }
.row .m b { font-weight: 500; color: var(--black); }
.row .t { font-size: .95rem; color: #4a4845; }
.row.out h3 { color: #9a9893; }
@media (max-width: 900px) { .row { grid-template-columns: 40px 1fr; } .row .m, .row .t { grid-column: 2; } }

/* split photo sections */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.split.flip > :first-child { order: 2; }
.split__img { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/5; }
.split__img.wide { aspect-ratio: 4/3; }
.split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.split__img:hover img { transform: scale(1.03); }
.split__img.mute img { filter: saturate(.25) contrast(1.05) brightness(.8); }
.split__img .k { position: absolute; left: 18px; bottom: 16px; color: rgba(255,255,255,.75); }
.split h2 { margin: 14px 0 20px; }
.split p { color: var(--grey); font-size: 1.08rem; }
.light .split p { color: #4a4845; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.flip > :first-child { order: 0; } }

/* steps */
.steps { list-style: none; margin: 36px 0 0; padding: 0; counter-reset: s; border-top: 1px solid var(--line-d); }
.light .steps { border-color: var(--line-l); }
.steps li { display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-d); align-items: baseline; }
.light .steps li { border-color: var(--line-l); }
.steps li::before { counter-increment: s; content: counter(s, decimal-leading-zero); font-family: var(--f); color: var(--grey-2); }
.steps b { font-weight: 500; display: block; }
.steps span { font-size: .92rem; color: var(--grey); }
.light .steps span { color: #4a4845; }
.steps .w { font-size: .8rem; color: var(--grey-2); white-space: nowrap; }
.steps li.you::before, .steps li.you .w { color: var(--accent); }

/* full-bleed photo band */
.band { position: relative; min-height: 80svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,11,12,.15), rgba(11,11,12,.9)); }
.band .wrap { width: 100%; padding-block: clamp(48px, 7vw, 96px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 80px); align-items: end; }
.band h2 { margin-top: 14px; }
.band ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-d); }
.band li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-d); font-size: .95rem; }
.band li span:first-child { color: var(--grey); }
@media (max-width: 900px) { .band .wrap { grid-template-columns: 1fr; } }

/* numbers */
.nums { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; margin-top: clamp(40px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line-d); }
.nums b { display: block; font-family: var(--f); font-weight: 500; font-size: clamp(2rem, 3.6vw, 3.2rem); letter-spacing: -.03em; line-height: 1; margin-bottom: 10px; }
.nums span { font-size: .9rem; color: var(--grey); }
@media (max-width: 900px) { .nums { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* why: three statements */
.why { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(24px, 4vw, 56px); }
.why > div { padding-top: 22px; border-top: 1px solid var(--line-l); }
.why h3 { font-size: 1.35rem; margin: 10px 0 12px; }
.why p { font-size: .98rem; color: #4a4845; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }

/* contact */
.cta { position: relative; overflow: hidden; isolation: isolate; }
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; z-index: -2; opacity: .55; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11,11,12,.95) 35%, rgba(11,11,12,.5)); }
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(24px, 5vw, 80px); align-items: end; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); margin: 14px 0 24px; }
.cta p { color: var(--grey); font-size: 1.08rem; }
.who { border-top: 1px solid var(--line-d); padding-top: 22px; }
.who .name { font-family: var(--f); font-weight: 500; font-size: 1.5rem; letter-spacing: -.02em; }
.who .role { color: var(--grey); font-size: .95rem; margin-bottom: 18px; }
.who dl { display: grid; grid-template-columns: 90px 1fr; gap: 10px 14px; margin: 0; font-size: .95rem; }
.who dt { color: var(--grey); } .who dd { margin: 0; }
.who .btn { margin-top: 24px; }
@media (max-width: 900px) { .cta .wrap { grid-template-columns: 1fr; } }

/* footer */
.foot { border-top: 1px solid var(--line-d); padding: 28px 0 36px; font-size: .82rem; color: var(--grey); }
.foot .wrap { display: flex; flex-wrap: wrap; gap: 10px 32px; justify-content: space-between; }

/* ==========================================================================
   Character layer
   ========================================================================== */

/* film grain over everything (very low) */
body::after { content: ""; position: fixed; inset: -10%; z-index: 70; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px; animation: grain 1.2s steps(4) infinite; }
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-2%,1%)} 50%{transform:translate(1%,-2%)} 75%{transform:translate(-1%,-1%)} 100%{transform:translate(2%,2%)} }
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

/* scroll progress */
.prog { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 60; background: var(--accent); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }

/* hero headline: masked line reveal */
.hero h1 .l { display: block; overflow: hidden; }
.hero h1 .l > span { display: block; transform: translateY(110%); animation: up 1.1s cubic-bezier(.2,.8,.2,1) forwards; }
.hero h1 .l:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .l:nth-child(3) > span { animation-delay: .24s; }
@keyframes up { to { transform: none; } }
.hero .k::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--accent); vertical-align: middle; margin-right: 12px; }

/* section index labels */
.k i { font-style: normal; color: var(--accent); margin-right: 10px; }

/* the label that goes on last */
.tin__img { background: #000; }
.tin__label { position: absolute; left: 50%; top: 52%; width: 36%; aspect-ratio: 1 / .92; transform: translate(-50%, -50%) translateY(40px); opacity: 0;
  background: #F5F4F1; border-radius: 3px; color: #0B0B0C; padding: 7% 8%; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 60px rgba(0,0,0,.55); transition: transform 1.3s cubic-bezier(.2,.8,.2,1) .35s, opacity 1s ease .35s; }
.tin__label::after { content: ""; position: absolute; inset: 0; border-radius: 3px; background: linear-gradient(90deg, rgba(0,0,0,.28), rgba(0,0,0,0) 22%, rgba(255,255,255,.18) 48%, rgba(0,0,0,0) 74%, rgba(0,0,0,.32)); pointer-events: none; }
.tin.in .tin__label { transform: translate(-50%, -50%); opacity: 1; }
.tin__label .lm { width: 22%; aspect-ratio: 1; border: 2px solid #0B0B0C; border-radius: 12%; position: relative; }
.tin__label .lm::after { content: ""; position: absolute; left: 22%; right: 22%; bottom: 26%; height: 2.5px; background: var(--accent); }
.tin__label .lt { font-family: var(--f); font-weight: 500; letter-spacing: -.02em; font-size: clamp(.9rem, 1.6vw, 1.5rem); line-height: 1.05; }
.tin__label .lt small { display: block; font-family: var(--fb); font-weight: 400; font-size: .55em; color: #6b6966; margin-top: .5em; letter-spacing: .04em; }
.tin__label .ls { font-size: clamp(.5rem, .7vw, .66rem); letter-spacing: .1em; text-transform: uppercase; color: #6b6966; border-top: 1px solid rgba(0,0,0,.15); padding-top: 6%; display: flex; justify-content: space-between; }
@media (max-width: 900px) { .tin__label { width: 40%; } }

/* range rows: index turns blue, row lifts */
.row { position: relative; transition: background .2s, padding-left .25s; }
.row:hover { padding-left: 10px; }
.row:hover .n { color: var(--accent); }

/* giant wordmark in the footer */
.foot { position: relative; overflow: hidden; padding-top: 0; border-top: 0; }
.foot__mark { font-family: var(--f); font-weight: 600; letter-spacing: -.05em; line-height: .8; font-size: clamp(5rem, 19vw, 21rem); color: #161618; -webkit-text-stroke: 0; user-select: none; margin: 0 0 -.06em; white-space: nowrap; transform: translateX(-.04em); }
.foot .wrap.meta { border-top: 1px solid var(--line-d); padding-top: 24px; }

/* ==========================================================================
   Hero with the 3D tin
   ========================================================================== */
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(16px, 3vw, 48px); min-height: calc(100svh - 300px); }
.hero__3d { position: relative; height: clamp(420px, 74vh, 760px); }
.hero__3d canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
.hero__fallback { position: absolute; left: 50%; top: 50%; height: 88%; width: auto; transform: translate(-50%, -50%); object-fit: contain; opacity: .9; transition: opacity .8s; -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%); mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 55%, transparent 100%); }
.hero__3d.ready .hero__fallback { opacity: 0; }
.hero__shade { background:
  linear-gradient(180deg, rgba(11,11,12,.6) 0%, rgba(11,11,12,.2) 35%, rgba(11,11,12,.25) 55%, rgba(11,11,12,.9) 100%),
  linear-gradient(90deg, rgba(11,11,12,.7) 0%, rgba(11,11,12,.15) 55%, rgba(11,11,12,.35) 100%); }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__stage { order: -1; margin-top: 8px; } .hero__3d { height: 44vh; min-height: 280px; }
  .hero .wrap { padding-top: 96px; }
}

/* tin carousel caption */
.hero__stage { position: relative; }
.hero__3d { cursor: pointer; }
.hero__cap { position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); display: flex; gap: 14px; align-items: baseline; white-space: nowrap; font-size: .9rem; color: var(--grey); opacity: 0; transition: opacity .5s ease, transform .5s ease; }
.hero__cap.show { opacity: 1; }
.hero__cap .n { font-size: .74rem; letter-spacing: .12em; color: var(--accent); }
.hero__cap .name { font-family: var(--f); font-weight: 500; color: var(--white); font-size: 1.02rem; }
.hero__cap .sub { font-size: .8rem; color: var(--grey-2); }
@media (max-width: 900px) { .hero__cap .sub { display: none; } .hero__cap { bottom: -2px; } }

/* 3D stage: canvas fades in only when the environment is ready; edges masked */
.hero__3d canvas { opacity: 0; transition: opacity .9s ease; }
.hero__3d.ready canvas { opacity: 1; }
.hero__3d { -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent), linear-gradient(180deg, #000 72%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent), linear-gradient(180deg, #000 72%, transparent 100%); mask-composite: intersect; }
.hero__cap { z-index: 2; }

/* studio pool of darkness behind the 3D stage so the tins separate from the photo */
.hero__stage { z-index: 0; }
.hero__stage::before { content: ""; position: absolute; inset: -12% -18%; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 58%, rgba(11,11,12,.92) 0%, rgba(11,11,12,.75) 45%, rgba(11,11,12,0) 75%); }
