/* ============================================================
   ASK A QUESTION — Page-Specific Styles
   Premium editorial. Cinematic hero + centered form.
   v5 — QA1 fixes: photo absolute, mask wider, centered form,
        subtitle opacity, button size, promo heading
   ============================================================ */

/* ============================================================
   HERO — photo absolute-fills right half, text left
   ============================================================ */
.ask-hero {
  position: relative;
  background: #000;
  min-height: 100vh;
  overflow: hidden;
}

.ask-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Left text — 52% of inner width */
.ask-hero-text {
  width: 48%;
  flex-shrink: 0;
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(80px, 10vw, 120px);
  padding-right: clamp(60px, 6vw, 100px);
}

.ask-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.ask-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

/* Photo — absolutely fills right half of hero */
.ask-hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
  pointer-events: none;
}

.ask-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   FORM SECTION — centered, editorial
   ============================================================ */
.ask-form-section {
  background: #0a0a0a;
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Intro copy — full-width centered pull quote */
.ask-intro-wrap {
  max-width: 1100px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  padding: 0 clamp(24px, 4vw, 40px);
  text-align: center;
}

.ask-copy-text {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: rgba(255,255,255,0.88);
  font-style: normal;
  font-weight: 400;
}

.ask-copy-text .gold {
  color: var(--accent);
  font-weight: 600;
}

/* Form card — centered, clean */
.ask-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 40px);
}

.ask-form-card {
  background: #f8f7f4;
  border-radius: 8px;
  padding: clamp(40px, 5vw, 60px) clamp(32px, 4vw, 56px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.ask-form-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
  line-height: 1.2;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

.ask-form-title em {
  font-style: normal;
  color: #b8881e;
}

/* Form structure */
.ask-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ask-form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ask-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ask-form-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.02em;
}

.ask-form-hint {
  font-size: 14px;
  color: #888;
  line-height: 1.45;
}

.ask-form-input,
.ask-form-textarea {
  background: #fff;
  border: 1px solid #d0cdc8;
  color: #111;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.ask-form-input:focus,
.ask-form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.14);
}

.ask-form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.ask-form-input::placeholder,
.ask-form-textarea::placeholder {
  color: #bbb;
}

/* Submit */
.ask-submit-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #000;
  padding: 22px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(212,168,83,0.28);
  margin-top: 8px;
}

.ask-submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,168,83,0.38);
}

.ask-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.ask-fine-print {
  font-size: 14px;
  color: #999;
  text-align: center;
  line-height: 1.5;
}

.ask-fine-print a {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ask-fine-print a:hover { color: #333; }

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.ask-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.ask-success.visible { display: block; }

.ask-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(212,168,83,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ask-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
}

.ask-success-headline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
}

.ask-success-body {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
}

/* ============================================================
   PROMO SECTION (Club 28 + Next Level)
   ============================================================ */
.ask-promo {
  background: linear-gradient(180deg, #0d0a06 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: clamp(64px, 7vw, 100px) 0;
}

.ask-promo-headline {
  text-align: center;
  padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 4vw, 56px);
}

.ask-promo-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.ask-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.ask-promo-panel {
  padding: clamp(28px, 2.5vw, 40px) clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #181410;
  border: 1px solid rgba(212,175,55,0.35);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7), 0 0 40px rgba(212,175,55,0.08);
}

.ask-promo-label {
  font-size: clamp(22px, 2.8vw, 32px);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.ask-promo-text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  flex: 1;
}

.ask-promo-btn {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 17px 40px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  margin-top: 4px;
}

.ask-promo-btn:hover {
  background: rgba(212,168,83,0.1);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ask-promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ask-hero-photo {
    display: none;
  }
  .ask-hero-text {
    width: 100%;
    padding-right: 0;
  }
  .ask-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ask-headline {
    font-size: clamp(36px, 11vw, 54px);
  }
  .ask-form-card {
    padding: 28px 20px;
  }
  .ask-submit-btn {
    font-size: 16px;
    padding: 20px 24px;
  }
}

@media (max-width: 375px) {
  .ask-copy-text { font-size: 17px; }
}
