*{box-sizing:border-box}

:root{
  --paper:#f2eee4;
  --ink:#171716;
  --soft:#726b60;
  --rule:rgba(23,23,22,.15);
  --orange:#dd6c32;

  --lb-black:#141313;
  --lb-cream:#efe5d0;
  --lb-gold:#c3a25e;
  --lb-red:#8d2b26;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}

.page{
  width:min(1200px,calc(100% - 40px));
  margin:0 auto;
}

.header{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--rule);
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-name{
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.06em;
}

.horn-mark{
  width:13px;
  height:16px;
  display:inline-block;
  background:var(--orange);
  clip-path:polygon(0 100%,100% 0,73% 100%);
  transform:rotate(10deg) translateY(1px);
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  font-size:.82rem;
  color:var(--soft);
  font-weight:650;
}

nav a:hover{color:var(--ink)}

.hero{
  min-height:650px;
  padding:105px 0 90px;
  border-bottom:1px solid var(--rule);
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(250px,.35fr);
  gap:80px;
  align-items:end;
}

.eyebrow{
  margin:0 0 28px;
  color:var(--soft);
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.19em;
}

h1{
  margin:0;
  max-width:920px;
  font-size:clamp(4.7rem,8.5vw,8.4rem);
  line-height:.86;
  letter-spacing:-.078em;
  font-weight:900;
}

.hero-side{
  max-width:340px;
  padding-bottom:9px;
}

.hero-side p{
  margin:0 0 30px;
  color:var(--soft);
  font-size:1.08rem;
  line-height:1.7;
}

.arrow-link{
  display:inline-block;
  text-decoration:none;
  padding-bottom:4px;
  border-bottom:1px solid var(--ink);
  font-size:.78rem;
  font-weight:800;
}

.arrow-link span{margin-left:8px}

.games-section,.about{
  padding:84px 0 105px;
  border-bottom:1px solid var(--rule);
}

.section-index{
  display:flex;
  gap:20px;
  margin-bottom:36px;
  font-size:.65rem;
  font-weight:850;
  letter-spacing:.16em;
}

.section-index span:first-child{color:var(--orange)}
.section-index span:last-child{color:var(--soft)}

.lucky{
  min-height:540px;
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--lb-black);
  color:var(--lb-cream);
  border:1px solid rgba(195,162,94,.48);
}

.lucky:before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(195,162,94,.32);
  pointer-events:none;
}

.lucky-brand,
.lucky-copy{
  position:relative;
  z-index:2;
}

.lucky-brand{
  min-height:540px;
  padding:52px 58px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-right:1px solid rgba(195,162,94,.22);
}

.release{
  position:absolute;
  top:42px;
  left:50%;
  transform:translateX(-50%);
  white-space:nowrap;
  color:var(--lb-gold);
  font-size:.59rem;
  font-weight:850;
  letter-spacing:.17em;
}

.bones-emblem{
  width:130px;
  height:118px;
  margin-bottom:16px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.spade-shape{
  width:105px;
  height:105px;
  position:relative;
  transform:rotate(45deg);
  border:2px solid var(--lb-gold);
  border-radius:55% 50% 48% 50%;
}

.spade-shape:after{
  content:"";
  position:absolute;
  width:44px;
  height:56px;
  right:-23px;
  bottom:-23px;
  background:var(--lb-black);
  border-left:2px solid var(--lb-gold);
  border-top:2px solid var(--lb-gold);
}

.mini-die{
  position:absolute;
  display:block;
  width:42px;
  height:42px;
  border-radius:7px;
  transform:rotate(-45deg);
  box-shadow:0 5px 14px rgba(0,0,0,.28);
  z-index:2;
}

.ivory-die{
  background:var(--lb-cream);
  left:11px;
  top:42px;
}

.red-die{
  background:var(--lb-red);
  right:8px;
  top:17px;
}

.mini-die i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lb-black);
  position:absolute;
}

.red-die i{background:var(--lb-cream)}

.mini-die i:nth-child(1){left:8px;top:8px}
.mini-die i:nth-child(2){right:8px;top:8px}
.mini-die i:nth-child(3){left:18px;top:18px}
.mini-die i:nth-child(4){left:8px;bottom:8px}
.mini-die i:nth-child(5){right:8px;bottom:8px}

.bones-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(3.4rem,5vw,5.3rem);
  letter-spacing:-.055em;
  line-height:.92;
  text-align:center;
}

.bones-rule{
  width:min(360px,80%);
  height:1px;
  margin:25px 0 17px;
  background:linear-gradient(90deg,transparent,var(--lb-gold),transparent);
}

.bones-tagline{
  color:var(--lb-gold);
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;
  font-size:1.05rem;
}

.lucky-copy{
  padding:76px 62px 58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.lucky-copy .lead{
  margin:0 0 20px;
  color:var(--lb-cream);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,3.6vw,3.2rem);
  line-height:1.05;
  letter-spacing:-.035em;
}

.lucky-copy>p:not(.lead){
  max-width:510px;
  margin:0;
  color:rgba(239,229,208,.7);
  font-size:1.03rem;
  line-height:1.72;
}

.lucky-copy strong{color:var(--lb-cream)}

.facts{
  margin:40px 0 32px;
  border-top:1px solid rgba(239,229,208,.14);
}

.facts>div{
  display:grid;
  grid-template-columns:85px 1fr;
  gap:18px;
  padding:13px 0;
  border-bottom:1px solid rgba(239,229,208,.14);
  font-size:.8rem;
  color:rgba(239,229,208,.72);
}

.fact-label{
  color:var(--lb-gold);
  font-size:.58rem;
  letter-spacing:.13em;
  font-weight:850;
}

.bones-link{
  width:max-content;
  text-decoration:none;
  color:var(--lb-gold);
  font-size:.78rem;
  padding-bottom:4px;
  border-bottom:1px solid rgba(195,162,94,.55);
}

.bones-link span{margin-left:7px}

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:start;
}

.about h2{
  margin:0;
  max-width:520px;
  font-size:clamp(3.6rem,6vw,6rem);
  line-height:.9;
  letter-spacing:-.065em;
}

.about-copy{
  max-width:610px;
}

.about-copy p{
  margin:0 0 20px;
  color:var(--soft);
  font-size:1.08rem;
  line-height:1.78;
}

.about-copy .quiet{
  margin-top:34px;
  color:var(--ink);
  font-weight:750;
}

.footer{
  min-height:215px;
  padding:48px 0;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.footer-brand{
  font-size:1.8rem;
  font-weight:900;
  letter-spacing:-.065em;
}

.footer-brand span{color:var(--orange)}

.footer-sub{
  margin-top:7px;
  color:var(--soft);
  font-size:.78rem;
}

.footer-info{
  display:grid;
  gap:6px;
  justify-items:end;
  color:var(--soft);
  font-size:.78rem;
}

.footer-info a{text-decoration:none}
.footer-info a:hover{color:var(--ink)}

@media(max-width:860px){
  .hero{
    grid-template-columns:1fr;
    gap:50px;
    min-height:0;
    padding:88px 0 80px;
  }
  .hero-side{max-width:570px}
  .lucky{grid-template-columns:1fr}
  .lucky-brand{border-right:none;border-bottom:1px solid rgba(195,162,94,.22)}
  .about-grid{grid-template-columns:1fr;gap:35px}
}

@media(max-width:560px){
  .page{width:min(100% - 28px,1200px)}
  .header{height:78px}
  nav{gap:18px}
  nav a:not(:last-child){display:none}
  h1{font-size:clamp(3.8rem,17vw,5.3rem)}
  .games-section,.about{padding:68px 0 78px}
  .lucky-brand{min-height:460px;padding:46px 26px}
  .release{top:32px;font-size:.53rem}
  .lucky-copy{padding:48px 30px}
  .facts>div{grid-template-columns:72px 1fr}
  .footer{align-items:flex-start;flex-direction:column;gap:38px}
  .footer-info{justify-items:start}
}
