/*
  consent-gate.css — mandatory one-time house-rules notice.
  All rules prefixed .cah-gate-* — no leaks into other pages.
  Loaded on every page (unlike rooms-nav.css, which skips hero/family-tree).
  Locked visual: 2026-09-02.
*/

html.cah-gate-open,
html.cah-gate-open body {
  overflow: hidden !important;
}

.cah-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(45, 36, 25, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.cah-gate-card {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ft-cream, #FDFBF5);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 32px 28px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ft-ink, #2D2419);
}

.cah-gate-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ft-moss, #5A6B4F);
  margin: 0 0 10px;
  text-align: center;
}

.cah-gate-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: var(--ft-wax, #6B1F2E);
  text-align: center;
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.1;
}

.cah-gate-intro {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.cah-gate-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cah-gate-list li {
  font-size: 13.5px;
  line-height: 1.55;
  background: var(--ft-gold-warm, #FFF3C9);
  border: 1px solid var(--ft-gold, #B08D57);
  border-radius: 10px;
  padding: 10px 14px;
}

.cah-gate-list a {
  color: var(--ft-wax, #6B1F2E);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid var(--ft-gold, #B08D57);
}

.cah-gate-list a:hover,
.cah-gate-list a:focus-visible {
  color: var(--ft-wax-deep, #4A0E1B);
}

.cah-gate-fine {
  font-size: 11.5px;
  color: var(--ft-muted, #6B6355);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px;
}

.cah-gate-btn {
  display: block;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: var(--ft-wax, #6B1F2E);
  color: #FFF3C9;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cah-gate-btn:hover,
.cah-gate-btn:focus-visible {
  background: var(--ft-wax-deep, #4A0E1B);
}
