/* ── Homepage — The Sentinel Room ── */
:root {
  --dark-1: #0D0B08; --dark-2: #13100B; --dark-3: #1B1610;
  --gold: #F9AF36; --gold-light: #FDE8C4; --gold-dim: rgba(249,175,54,0.12);
  --border: #2A1F14; --text: #F0E6D4; --muted: #B0A08C;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark-1); color: var(--text); font-family: system-ui, -apple-system, sans-serif; }
a { color: inherit; }
.hidden { display: none !important; }

.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 560px; }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark-1);
  font-size: 15px; font-weight: 700; padding: 12px 28px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s; font-family: inherit;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  display: inline-block; background: rgba(13,11,8,0.5); color: var(--gold);
  font-size: 15px; font-weight: 600; padding: 12px 28px; border-radius: 4px;
  border: 1px solid var(--gold); text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s; font-family: inherit;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: var(--gold-dim); }
.btn-lg { font-size: 16px; padding: 14px 36px; }
.btn-full { width: 100%; text-align: center; }

/* ═══ HERO ═══ */
.hero {
  min-height: 75vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px 60px;
  background: linear-gradient(180deg, rgba(13,11,8,0.5) 0%, rgba(13,11,8,0.85) 100%),
    url('img/venue/cocktail-lounge.webp') center/cover no-repeat fixed;
}
.hero-badge {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  margin-bottom: 12px;
}
.hero-logo {
  max-width: clamp(260px, 55vw, 460px); height: auto;
  filter: brightness(1.1);
}
.hero-subtitle {
  font-size: clamp(16px, 3.2vw, 20px); color: #FFFFFF; font-weight: 500;
  line-height: 1.8; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══ SECTIONS ═══ */
.section-dark { background: var(--dark-2); padding: 56px 20px; text-align: center; }
.section-experiences { background: var(--dark-1); padding: 56px 20px; }
.section-club {
  background: linear-gradient(135deg, #1B1610 0%, #0D0B08 100%);
  padding: 64px 20px; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section-info { background: var(--dark-2); padding: 48px 20px; border-top: 1px solid var(--border); }

.section-title {
  font-family: Georgia, serif; font-size: clamp(22px, 5vw, 32px);
  color: var(--gold-light); margin-bottom: 16px; text-align: center;
}
.section-lead {
  font-family: Georgia, serif; font-size: clamp(18px, 4vw, 24px);
  color: var(--gold-light); line-height: 1.5; margin-bottom: 16px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.section-body {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  max-width: 640px; margin: 0 auto 24px;
}

/* ═══ EXPERIENCE CARDS ═══ */
.experience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.exp-card {
  background: var(--dark-2); border: 1px solid var(--border); border-radius: 4px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.15s; overflow: hidden;
}
.exp-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.exp-card-img {
  height: 160px; background-size: cover; background-position: center;
  border-bottom: 1px solid var(--border);
}
.exp-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.exp-icon { color: var(--gold); margin-bottom: 12px; }
.exp-title { font-family: Georgia, serif; font-size: 18px; color: var(--gold-light); margin-bottom: 8px; }
.exp-desc { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.exp-link { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ═══ 3-STEP PLAN ═══ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 720px; margin: 24px auto 0;
}
.step { text-align: center; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-dim);
  color: var(--gold); font-size: 18px; font-weight: 700; line-height: 40px;
  margin: 0 auto 12px; border: 1px solid rgba(249,175,54,0.3);
}
.step-title { font-family: Georgia, serif; font-size: 16px; color: var(--gold-light); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══ CLUB STATS ═══ */
.club-stats {
  display: flex; justify-content: center; gap: 40px; margin: 24px 0 32px;
  flex-wrap: wrap;
}
.club-stat { text-align: center; }
.club-stat-val { display: block; font-family: Georgia, serif; font-size: 28px; color: var(--gold); font-weight: 700; }
.club-stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ═══ INNER CIRCLE FORM ═══ */
.ic-form { max-width: 480px; margin: 0 auto; }
.ic-row { display: flex; gap: 10px; margin-bottom: 10px; }
.ic-row input {
  flex: 1; background: var(--dark-3); border: 1px solid var(--border); border-radius: 4px;
  color: var(--text); padding: 12px 14px; font-size: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.ic-row input:focus { border-color: var(--gold); outline: none; }
.ic-row input::placeholder { color: var(--muted); }
.ic-comm {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  font-size: 13px; color: var(--muted);
}
.ic-comm-label { font-weight: 600; }
.ic-radio { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.ic-radio input { accent-color: var(--gold); }
.ic-success {
  text-align: center; color: var(--gold); font-size: 14px;
  margin-top: 12px; padding: 12px; background: var(--gold-dim); border-radius: 4px;
}
.ic-error {
  text-align: center; color: #E05040; font-size: 13px; margin-top: 8px;
}

/* ═══ INFO GRID ═══ */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px; max-width: 720px; margin: 0 auto;
}
.info-item { text-align: center; }
.info-label {
  font-family: Georgia, serif; font-size: 14px; color: var(--gold);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px;
}
.info-val { font-size: 14px; color: var(--muted); line-height: 1.8; }
.info-link { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.info-link:hover { color: var(--gold); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 600px) {
  .hero { min-height: 60vh; padding: 60px 20px 40px; background-attachment: scroll; }
  .ic-row { flex-direction: column; }
  .ic-comm { flex-wrap: wrap; }
  .club-stats { gap: 24px; }
}

/* ═══ HOMEPAGE EVENTS PREVIEW ═══ */
.home-events-list { display: flex; flex-direction: column; gap: 2px; max-width: 640px; margin: 0 auto; }
.home-ev-card {
  display: flex; gap: 14px; padding: 16px; background: var(--dark-1);
  border: 1px solid var(--border); border-radius: 4px;
  text-decoration: none; transition: border-color 0.2s;
}
.home-ev-card:hover { border-color: var(--gold); }
.home-ev-date {
  flex-shrink: 0; width: 48px; text-align: center;
  background: var(--dark-2); border-radius: 4px; padding: 6px 4px;
}
.home-ev-month { font-size: 10px; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.home-ev-day { font-size: 20px; color: var(--text); font-weight: 700; font-family: Georgia, serif; }
.home-ev-info { flex: 1; min-width: 0; }
.home-ev-title { font-family: Georgia, serif; font-size: 15px; color: var(--gold-light); margin-bottom: 2px; }
.home-ev-meta { font-size: 12px; color: var(--muted); }
.home-ev-empty { text-align: center; color: var(--muted); font-size: 14px; padding: 20px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Google Reviews ── */
.reviews-row { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.reviews-row::-webkit-scrollbar { height: 4px; }
.reviews-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.review-card { flex: 0 0 300px; scroll-snap-align: start; background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; }
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-family: Georgia, serif; font-size: 14px; color: var(--text); line-height: 1.6; margin: 0 0 auto; padding-bottom: 12px; }
.review-author { font-size: 13px; color: var(--muted); font-style: italic; border-top: 1px solid var(--border); padding-top: 12px; }
@media (min-width: 768px) {
  .reviews-row { overflow: visible; flex-wrap: nowrap; justify-content: center; }
  .review-card { flex: 1 1 0; min-width: 0; max-width: 320px; }
}
