/* Copper Thyme age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  overflow: auto;
}
.age-gate[hidden] {
  display: none;
}
.age-gate__backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 20%, rgba(180, 118, 59, 0.22), transparent 58%),
    rgba(8, 8, 11, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.age-gate__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  padding: clamp(2rem, 6vw, 3.5rem);
  border: 1px solid var(--c-gold);
  border-radius: var(--r-soft);
  background:
    linear-gradient(160deg, rgba(201, 162, 75, 0.12), transparent 38%),
    var(--c-coal);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.72), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  text-align: center;
  clip-path: inset(50% round 50%);
  animation: age-gate-in 0.8s var(--ease-lux) forwards;
}
.age-gate__panel::before,
.age-gate__panel::after {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--c-gold-light);
  opacity: 0.75;
}
.age-gate__panel::before {
  top: 0.75rem;
  left: 0.75rem;
  border-right: 0;
  border-bottom: 0;
}
.age-gate__panel::after {
  right: 0.75rem;
  bottom: 0.75rem;
  border-left: 0;
  border-top: 0;
}
.age-gate__mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold-light);
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.age-gate__eyebrow {
  margin-bottom: 0.75rem;
  color: var(--c-gold-light);
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.age-gate__title {
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 5vw, 2.35rem);
}
.age-gate__desc {
  max-width: 27rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
}
.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}
.age-gate__btn {
  width: 100%;
  min-height: 3.75rem;
}
body.age-gate-locked {
  overflow: hidden;
}
@keyframes age-gate-in {
  to {
    clip-path: inset(0 round var(--r-soft));
  }
}
@media (min-width: 560px) {
  .age-gate__actions {
    grid-template-columns: 1.4fr 0.8fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .age-gate__panel {
    animation: none;
    clip-path: inset(0 round var(--r-soft));
  }
}
