/* ── Age Gate ── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0806;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#age-gate.hidden { display: none; }

.ag-box {
  background: #12100d;
  border: 1px solid #c8a030;
  max-width: 440px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.ag-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,160,48,0.08), transparent);
  pointer-events: none;
}
.ag-logo {
  width: 100px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(200,160,48,0.3));
}
.ag-box h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f0e8d0;
  margin-bottom: 10px;
}
.ag-box p {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.88rem;
  color: #786850;
  line-height: 1.7;
  margin-bottom: 32px;
}
.ag-box p strong { color: #c8a030; }
.ag-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.ag-yes {
  background: linear-gradient(135deg, #a07820, #c8a030);
  color: #0a0806;
  border: none;
  padding: 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ag-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,160,48,0.4);
}
.ag-no {
  background: transparent;
  color: #786850;
  border: 1px solid #2e2a20;
  padding: 14px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.ag-no:hover { border-color: #786850; color: #a09880; }
.ag-disclaimer {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.68rem;
  color: #3a3020;
  line-height: 1.6;
}

/* Declined screen */
#age-declined {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0806;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
#age-declined.show { display: flex; }
#age-declined h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: #f0e8d0;
  margin-bottom: 12px;
}
#age-declined p {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9rem;
  color: #786850;
}
