*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:
    radial-gradient(circle at top, rgba(216,163,45,.13), transparent 35%),
    #050505;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

.page{
  width:100%;
  max-width:1180px;
  margin:auto;
  padding:34px 22px;
}

.hero{
  position:relative;
  height:720px;
  margin-bottom:34px;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.08);
  background:#080808;
  box-shadow:0 30px 80px rgba(0,0,0,.65);
}

.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:brightness(.62) contrast(1.16) saturate(1.05);
  transform:scale(1.03);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.9) 28%, rgba(5,5,5,.35) 68%, rgba(5,5,5,.05) 100%),
    linear-gradient(0deg, #050505 0%, transparent 35%);
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:42px 42px;
  opacity:.22;
  z-index:2;
}

.hero-content{
  position:absolute;
  z-index:5;
  left:48px;
  bottom:58px;
  width:72%;
}

.hero-content h2{
  font-size:56px;
  letter-spacing:22px;
  font-weight:300;
  color:#d8d8d8;
}

.hero-content h1{
  font-size:128px;
  line-height:.82;
  font-weight:950;
  font-style:italic;
  color:#f2c14e;
  text-transform:uppercase;
  text-shadow:0 0 35px rgba(216,163,45,.35);
}

.slogan{
  margin-top:24px;
  font-size:22px;
  letter-spacing:6px;
  font-style:italic;
  font-weight:900;
}

.slogan span,
.desc span,
.card span,
.coupon strong,
.footer span{
  color:#f2c14e;
}

.desc{
  margin-top:22px;
  max-width:480px;
  font-size:18px;
  line-height:1.5;
  font-weight:700;
  color:#e7e7e7;
}

.card{
  min-height:260px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:24px;
  margin-bottom:22px;
  display:grid;
  grid-template-columns:30% 38% 32%;
  align-items:center;
  gap:26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    #0b0b0b;
  overflow:hidden;
  position:relative;
  transition:.25s ease;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(216,163,45,.18), transparent 32%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.04) 50%, transparent 100%);
  pointer-events:none;
}

.card:hover{
  transform:translateY(-4px);
  border-color:rgba(216,163,45,.55);
  box-shadow:0 22px 60px rgba(216,163,45,.13);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
  filter:brightness(.82) contrast(1.14);
  transition:.25s ease;
}

.card:hover img{
  transform:scale(1.025);
  filter:brightness(.95) contrast(1.14);
}

.card h3{
  font-size:42px;
  font-style:italic;
  font-weight:950;
  margin:8px 0;
  color:#fff;
}

.card p{
  color:#d3d3d3;
  line-height:1.6;
  font-size:17px;
}

.card span{
  font-size:13px;
  letter-spacing:3px;
  font-weight:900;
}

.coupon{
  position:relative;
  z-index:2;
  border-left:1px solid rgba(255,255,255,.09);
  padding-left:28px;
}

.coupon small{
  font-size:14px;
  letter-spacing:3px;
  color:#aaa;
}

.coupon strong{
  display:block;
  font-size:38px;
  font-style:italic;
  margin:8px 0;
  text-shadow:0 0 22px rgba(216,163,45,.35);
}

.coupon h4{
  font-size:42px;
  line-height:1;
  color:#fff;
}

.coupon a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:14px 24px;
  border:1px solid #d8a32d;
  border-radius:999px;
  color:#000;
  background:#d8a32d;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.5px;
  transition:.25s ease;
  box-shadow:0 0 24px rgba(216,163,45,.22);
}

.coupon a:hover{
  transform:translateY(-2px);
  background:#f2c14e;
  border-color:#f2c14e;
  box-shadow:0 0 34px rgba(216,163,45,.42);
}

.footer{
  margin-top:64px;
  padding-bottom:42px;
}

.footer-line{
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, #d8a32d, transparent);
  margin-bottom:35px;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.footer-left h3{
  font-size:28px;
  letter-spacing:4px;
  font-weight:300;
}

.footer-left span{
  font-weight:950;
  font-style:italic;
}

.footer-left p{
  margin-top:10px;
  color:#888;
  letter-spacing:3px;
  font-size:12px;
}

.footer-center a{
  display:flex;
  align-items:center;
  gap:10px;
  color:white;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.1);
  padding:14px 26px;
  border-radius:999px;
  transition:.25s ease;
  font-weight:800;
  background:#111;
}

.footer-center a:hover{
  border-color:#d8a32d;
  background:#d8a32d;
  color:#000;
}

.footer-right p{
  color:#666;
  font-size:13px;
  letter-spacing:2px;
}

@media(max-width:768px){
  .page{
    padding:12px;
  }

  .hero{
    height:590px;
    border-radius:24px;
  }

  .hero-img{
    object-position:center top;
  }

  .hero::before{
    background:
      linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 42%, #050505 100%);
  }

  .hero-content{
    left:0;
    bottom:0;
    width:100%;
    padding:0 22px 36px;
  }

  .hero-content h2{
    font-size:31px;
    letter-spacing:10px;
  }

  .hero-content h1{
    font-size:64px;
  }

  .slogan{
    font-size:14px;
    letter-spacing:3px;
  }

  .desc{
    font-size:15px;
  }

  .card{
    grid-template-columns:1fr;
    text-align:center;
    padding:18px;
  }

  .card img{
    height:250px;
  }

  .card h3{
    font-size:36px;
  }

  .coupon{
    border-left:0;
    border-top:1px solid rgba(255,255,255,.09);
    padding-left:0;
    padding-top:22px;
  }

  .footer-content{
    flex-direction:column;
    text-align:center;
  }
}