.funnel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-funnel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.funnel-overlay[hidden] { display: none; }

/* ── Modal — compact, email-popup proportions ──────────────────────────── */
.funnel-modal {
  background: var(--black-card);
  border: var(--border-gold);
  max-width: 680px;         /* wider */
  width: 100%;
  max-height: 82vh;         /* never taller than viewport */
  overflow-y: auto;
  padding: 32px 40px 36px;  /* tighter than before */
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.funnel-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  color: var(--white-60); font-size: 1.1rem;
  cursor: pointer; transition: color var(--dur-fast) var(--ease-luxury);
}
.funnel-close:hover { color: var(--gold); }

.funnel-progress-bar {
  width: 100%; height: 2px;
  background: rgba(201,168,76,0.2);
  margin-bottom: 6px;
}
.funnel-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}

.funnel-step-label {
  color: var(--gold-dim);
  margin-bottom: 16px;
  display: block;
}

.funnel-step h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.funnel-sub {
  color: var(--white-60);
  font-size: var(--fs-small);
  margin-bottom: 18px;
}

/* Checkboxes & radios — tighter rows */
.funnel-checkboxes,
.funnel-radios {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.funnel-check,
.funnel-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: var(--border-gold-30);
  cursor: pointer;
  font-size: var(--fs-small);
  transition: border-color var(--dur-fast) var(--ease-luxury),
              background   var(--dur-fast) var(--ease-luxury);
}
.funnel-check:hover,
.funnel-radio:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.funnel-check input[type="checkbox"],
.funnel-radio input[type="radio"] {
  accent-color: var(--gold);
  width: 15px; height: 15px; flex-shrink: 0;
}

/* Step 3 — contact form */
.funnel-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.funnel-form-row { display: flex; gap: 10px; }
.funnel-form input {
  width: 100%;
  background: var(--black-soft);
  border: var(--border-gold-30);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-luxury);
}
.funnel-form input:focus { border-color: var(--gold); }
.funnel-form input::placeholder { color: var(--white-60); }
.funnel-submit { width: 100%; }

/* ── Mobile — slide up sheet ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .funnel-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .funnel-modal {
    max-width: 100%;
    width: 100%;
    max-height: 88vh;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px 32px;
  }

  .funnel-step h3 { font-size: 1.15rem; }
  .funnel-check, .funnel-radio { font-size: 0.875rem; padding: 9px 12px; }
  .funnel-form input { font-size: 16px; } /* prevent iOS zoom */
  .funnel-form-row { flex-direction: column; gap: 0; }
  .funnel-submit { width: 100%; }
}
