/* =============================================
   INQUIRE PAGE
   ============================================= */

/* Gate overlay */
.gate-overlay {
  min-height: calc(100vh - 160px);
  background: var(--bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem 6rem;
}

.gate-box {
  width: 100%;
  max-width: 740px;
}

.gate-box h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--green);
  letter-spacing: 0.08em;
  text-align: center;
}

.gate-box .hero-divider {
  width: 100%;
  height: 2px;
}

.gate-disclaimer {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  background: var(--bg-surface);
  margin-bottom: 2rem;
  max-height: 420px;
  overflow-y: auto;
}

.gate-disclaimer h2 {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.gate-disclaimer h2:first-child {
  margin-top: 0;
}

.gate-disclaimer p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: none;
  margin-bottom: 0.75rem;
}

.gate-disclaimer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.gate-disclaimer ul li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.gate-disclaimer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
}

/* Gate checkbox + button */
.gate-confirm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gate-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  cursor: pointer;
}

.gate-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.gate-checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.gate-btn {
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.7rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.gate-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gate-btn:not(:disabled):hover {
  background: var(--green-light);
}

/* Form page */
.page-hero {
  padding: 4rem 0 0;
  background: var(--bg);
  text-align: center;
}

.page-hero .container {
  padding-bottom: 3rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-divider {
  width: 100%;
  height: 2px;
  margin: 1rem 0;
}

.waitlist-checkbox-label {
  justify-content: center;
  max-width: 420px;
  margin: 1.5rem auto 0;
}

.inquire-section {
  padding: 4rem 0 6rem;
}

.inquire-container {
  max-width: 640px;
}

.inquire-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 62ch;
}

.inquire-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.optional {
  color: var(--text-faint);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-group input:disabled,
.form-group textarea:disabled {
  background: var(--bg-surface);
  color: var(--text-faint);
  cursor: not-allowed;
}

.form-disclaimer {
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-disclaimer .gate-checkbox-label:has(input:disabled) {
  cursor: not-allowed;
}

.form-disclaimer .gate-checkbox-label:has(input:disabled) span {
  color: var(--text-faint);
}

.submit-btn {
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 2.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.submit-btn:hover {
  background: var(--green-light);
}

.submit-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .gate-overlay { padding: 2.5rem 1.25rem 4rem; }
  .gate-disclaimer { padding: 1.5rem; max-height: 320px; }
  .page-hero { padding: 3rem 1.5rem; }
}
