/* ═══════════════════════════════════════════════════
   DolaQ Engagement — Frontend Styles
   Palette: Deep black #0a0a0a · Rich gold #c9a84c
   Typography: Cormorant Garamond (display) · Inter (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
.dolaq-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dolaq-wrap {
  font-family: 'Inter', sans-serif;
  color: #e8e8e8;
  background: #0a0a0a;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ── Hero ── */
.dolaq-hero {
  text-align: center;
  padding: 56px 20px 48px;
  background: radial-gradient(ellipse at center top, #1a1200 0%, #0a0a0a 70%);
  border-bottom: 1px solid #2a2000;
  margin: 0 -16px 0;
}

.dolaq-hero__rings {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.dolaq-hero__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: #c9a84c;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
}

.dolaq-hero__subtitle {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8a6f2e;
  margin-top: 6px;
}

.dolaq-hero__divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 20px auto;
}

.dolaq-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
}

.dolaq-hero__tagline {
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
}

/* ── Welcome ── */
.dolaq-welcome {
  background: #111111;
  border: 1px solid #1e1800;
  border-radius: 4px;
  padding: 28px 24px;
  margin: 28px 0;
  line-height: 1.8;
  color: #aaa;
  font-size: 14px;
}

.dolaq-welcome p + p { margin-top: 12px; }

.dolaq-welcome__sign {
  color: #c9a84c;
  font-size: 15px;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 16px !important;
}

/* ── Form Card ── */
.dolaq-form-card {
  background: #111111;
  border: 1px solid #1e1800;
  border-radius: 4px;
  overflow: hidden;
}

.dolaq-form-card__header {
  background: linear-gradient(135deg, #0f0d00, #1a1600);
  border-bottom: 1px solid #2a2000;
  padding: 20px 24px;
}

.dolaq-form-card__header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #c9a84c;
  letter-spacing: 0.5px;
}

.dolaq-form-card__header p {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

#dolaq-reg-form {
  padding: 24px;
}

/* ── Section Label ── */
.dolaq-section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  border-bottom: 1px solid #1e1800;
  padding-bottom: 10px;
  margin: 24px 0 20px;
}

.dolaq-section-label:first-child {
  margin-top: 0;
}

/* ── Fields ── */
.dolaq-field {
  margin-bottom: 20px;
}

.dolaq-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dolaq-field label .note {
  font-size: 11px;
  color: #555;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.dolaq-field input[type="text"],
.dolaq-field input[type="tel"],
.dolaq-field input[type="email"] {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #2a2000;
  border-radius: 3px;
  color: #e8e8e8;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.dolaq-field input:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.12);
}

.dolaq-field input::placeholder { color: #444; }

/* ── Select ── */
.dolaq-select-wrap {
  position: relative;
}

.dolaq-select-wrap select {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #2a2000;
  border-radius: 3px;
  color: #e8e8e8;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  padding: 12px 40px 12px 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.dolaq-select-wrap select:focus { border-color: #c9a84c; }
.dolaq-select-wrap select option { background: #1a1a1a; }

.dolaq-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a84c;
  pointer-events: none;
  font-size: 14px;
}

/* ── Errors ── */
.req { color: #c9a84c; }

.dolaq-error {
  display: block;
  font-size: 12px;
  color: #e07070;
  margin-top: 5px;
  min-height: 16px;
}

.dolaq-global-error {
  background: #1a0000;
  border: 1px solid #5a1a1a;
  border-radius: 3px;
  color: #e07070;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── Button ── */
.dolaq-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #c9a84c 0%, #a8862a 50%, #c9a84c 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 3px;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background-position 0.3s, opacity 0.2s, transform 0.1s;
  margin-top: 8px;
}

.dolaq-btn:hover { background-position: 100% 0; }
.dolaq-btn:active { transform: scale(0.99); }
.dolaq-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Spinner ── */
.dolaq-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: dolaq-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes dolaq-spin {
  to { transform: rotate(360deg); }
}

/* ── Confirmation Card ── */
.dolaq-confirm-card {
  background: #111111;
  border: 1px solid #c9a84c;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 28px;
  animation: dolaq-fadein 0.5s ease;
}

@keyframes dolaq-fadein {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

.dolaq-confirm-card__top {
  background: linear-gradient(135deg, #0f0d00, #1e1900);
  border-bottom: 1px solid #2a2000;
  padding: 32px 24px 28px;
  text-align: center;
}

.dolaq-confirm-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c9a84c;
  color: #0a0a0a;
  font-size: 22px;
  font-weight: 700;
  line-height: 48px;
  margin: 0 auto 16px;
}

.dolaq-confirm-card__top h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
}

.dolaq-confirm-card__top p {
  font-size: 13px;
  color: #888;
}

.dolaq-confirm-card__body {
  padding: 8px 24px 16px;
}

.dolaq-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
}

.dolaq-confirm-row:last-child { border-bottom: none; }

.dolaq-confirm-row .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.dolaq-confirm-row .value {
  font-size: 15px;
  color: #e8e8e8;
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

.dolaq-confirm-row.highlight { background: transparent; }

.dolaq-confirm-row .value.gold {
  color: #c9a84c;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.dolaq-confirm-row .value.bold {
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}

.dolaq-confirm-card__note {
  background: #0d0900;
  border-top: 1px solid #2a2000;
  padding: 16px 24px;
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

.dolaq-confirm-card__email-note {
  background: #001008;
  border-top: 1px solid #0a2a18;
  padding: 12px 24px;
  font-size: 13px;
  color: #5db88a;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .dolaq-hero { padding: 40px 16px 36px; }
  .dolaq-hero__brand { font-size: 28px; }
  .dolaq-form-card__header, #dolaq-reg-form { padding: 16px; }
  .dolaq-confirm-card__body { padding: 8px 16px 12px; }
  .dolaq-confirm-row .value.gold { font-size: 18px; }
}

/* ── Download Button ── */
.dolaq-confirm-card__actions {
  padding: 0 24px 24px;
}

.dolaq-btn--download {
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 13px;
  transition: background 0.2s, color 0.2s;
}

.dolaq-btn--download:hover {
  background: rgba(201,168,76,0.1);
  color: #e0c060;
  border-color: #e0c060;
}

.dolaq-spinner--dark {
  border-color: rgba(201,168,76,0.3);
  border-top-color: #c9a84c;
}

/* ── Powered By ── */
.dolaq-powered-by {
  margin: 48px -16px 0;               /* bleed to wrap edges */
  padding: 18px 24px;
  background: #050505;
  border-top: 1px solid #1e1800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dolaq-powered-by__line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #2a2000);
}

.dolaq-powered-by__line--right {
  background: linear-gradient(to left, transparent, #2a2000);
}

.dolaq-powered-by__text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3a3a;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.dolaq-powered-by__text a {
  color: #8a6f2e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.dolaq-powered-by__text a:hover {
  color: #c9a84c;
}