:root{
  --age-gate-orange:#e9510e;
  --age-gate-ink:#1d1d1b;
  --age-gate-amber:#f9ad00;
}

html.age-gate-lock,
html.age-gate-lock body{
  overflow:hidden;
}

.age-gate{
  position:fixed;
  inset:0;
  z-index:2147483000;
  display:grid;
  place-items:center;
  padding:clamp(20px,4vw,56px);
  color:#fff;
  background:
    linear-gradient(90deg,rgba(29,29,27,.94),rgba(29,29,27,.78)),
    radial-gradient(circle at 82% 12%,rgba(249,173,0,.18),transparent 34%),
    radial-gradient(circle at 12% 90%,rgba(233,81,14,.2),transparent 38%),
    var(--age-gate-ink);
  font-family:Inter,Roboto,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.age-gate[hidden]{
  display:none;
}

.age-gate__panel{
  width:min(100%,720px);
  border-top:1px solid rgba(255,255,255,.22);
  border-bottom:1px solid rgba(255,255,255,.12);
  padding:clamp(34px,5vw,62px) 0;
}

.age-gate__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:var(--age-gate-amber);
  font-size:11px;
  font-weight:800;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.age-gate__eyebrow::before{
  content:"";
  width:32px;
  height:1px;
  background:var(--age-gate-amber);
}

.age-gate h2{
  max-width:640px;
  margin:22px 0 18px;
  color:#fff;
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(44px,7vw,82px);
  font-weight:800;
  line-height:.96;
  letter-spacing:-.025em;
}

.age-gate h2 em{
  color:var(--age-gate-orange);
  font-style:italic;
  font-weight:400;
}

.age-gate p{
  max-width:560px;
  margin:0 0 30px;
  color:rgba(255,255,255,.72);
  font-size:16px;
  line-height:1.75;
}

.age-gate__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.age-gate__button{
  min-height:52px;
  padding:15px 24px;
  border:1.5px solid rgba(255,255,255,.28);
  background:transparent;
  color:#fff;
  font:inherit;
  font-size:11px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}

.age-gate__button--primary{
  border-color:var(--age-gate-orange);
  background:var(--age-gate-orange);
}

.age-gate__button:hover,
.age-gate__button:focus-visible{
  border-color:#fff;
  outline:none;
}

.age-gate__button--primary:hover,
.age-gate__button--primary:focus-visible{
  background:#fff;
  color:var(--age-gate-ink);
}

.age-gate__small{
  margin-top:24px;
  color:rgba(255,255,255,.42);
  font-size:12px;
  line-height:1.6;
}

@media (max-width:560px){
  .age-gate{
    align-items:end;
  }

  .age-gate__actions{
    display:grid;
  }

  .age-gate__button{
    width:100%;
  }
}
