/* ═══════════════════════════════════════════
   Homepage Hook + Showcase
   ═══════════════════════════════════════════ */

/* ── The Hook ───────────────────────────── */
.hook-section {
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
  background: var(--white, #F9F7F4);
  border-bottom: 1px solid var(--cream-dark, #DED8CA);
}

.hook-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold, #C9A961);
  letter-spacing: 0.12em;
  margin: 0 0 1.5rem;
}

.hook-widget {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(201,168,78,0.12);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  background: rgba(201,168,78,0.03);
  position: relative;
  overflow: hidden;
}

/* Steps container */
.hook-step {
  display: none;
  padding: 0.5rem 0;
}
.hook-step.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: hook-fade-in 0.35s ease;
}
@keyframes hook-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hook-prompt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink, #1A1A1A);
  margin: 0 0 1.25rem;
  line-height: 1.35;
}

/* Option pills */
.hook-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  width: 100%;
  max-width: 420px;
}

.hook-pill {
  background: none;
  border: 1.5px solid var(--cream-dark, #DED8CA);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  color: var(--ink, #1A1A1A);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.12s;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}
.hook-pill:hover {
  border-color: var(--gold, #C9A961);
  background: rgba(201,168,78,0.06);
}
.hook-pill:active {
  transform: scale(0.97);
}

.hook-options--three {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 420px) {
  .hook-options--three {
    grid-template-columns: 1fr;
  }
}

/* Recommendation card */
.hook-reco {
  text-align: center;
  width: 100%;
}

.hook-reco-grape {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--ink, #1A1A1A);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}

.hook-reco-region {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--gold, #C9A961);
  letter-spacing: 0.06em;
  margin: 0 0 0.9rem;
}

.hook-reco-note {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.88rem;
  color: var(--ink-light, #6B6B6B);
  line-height: 1.55;
  margin: 0 0 0.35rem;
  font-style: italic;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.hook-reco-why {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--ink-xlight, #9A9A9A);
  margin: 0 0 1.25rem;
}

.hook-reco-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hook-reco-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--gold, #C9A961);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0;
  transition: opacity 0.2s;
  text-decoration: none;
}
.hook-reco-link:hover { opacity: 0.75; }

.hook-reco-link--subtle {
  color: var(--ink-xlight, #9A9A9A);
  font-size: 0.78rem;
}

/* ── The Showcase ───────────────────────── */
.showcase-section {
  padding: 2rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  background: var(--cream, #F5F1E8);
  border-bottom: 1px solid var(--cream-dark, #DED8CA);
}

/* Subtle spotlight */
.showcase-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,78,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink, #1A1A1A);
  margin: 0 0 0.35rem;
  position: relative;
}

.showcase-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--ink-light, #6B6B6B);
  margin: 0 0 2rem;
  position: relative;
}

/* Video container */
.showcase-player {
  position: relative;
  width: 100%;
  max-width: 710px;
  margin: 0 auto 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-dark, #DED8CA);
  box-shadow: var(--shadow-md, 0 4px 20px rgba(26,26,26,0.10));
}

.showcase-video {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.showcase-video.active {
  display: block;
}

/* Placeholder for missing videos */
.showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink, #1A1A1A);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.showcase-placeholder.active {
  opacity: 1;
}
.showcase-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold, #C9A961);
  fill: none;
  stroke-width: 1;
  opacity: 0.25;
  animation: showcase-pulse 3s ease-in-out infinite;
}
@keyframes showcase-pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}
.showcase-placeholder-text {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
}

/* Bottom scrim removed — light background doesn't need it */

/* Tool info below video */
.showcase-info {
  position: relative;
  margin-bottom: 1rem;
}

.showcase-tool-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink, #1A1A1A);
  margin: 0 0 0.15rem;
}

.showcase-tool-desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.72rem;
  color: var(--ink-light, #6B6B6B);
  margin: 0 0 0.4rem;
  font-style: italic;
}

.showcase-tool-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--gold, #C9A961);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.showcase-tool-link:hover { opacity: 0.75; }

/* Dot indicators */
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.showcase-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream-dark, #DED8CA);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.showcase-dot.active {
  background: var(--gold, #C9A961);
  transform: scale(1.3);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 480px) {
  .hook-section {
    padding: 2rem 1rem 1rem;
  }
  .hook-widget {
    padding: 1.5rem 1rem;
  }
  .hook-step {
    padding: 1.5rem 1rem;
  }
  .hook-prompt {
    font-size: 1.15rem;
  }
  .hook-reco-grape {
    font-size: 1.5rem;
  }
  .showcase-player {
    max-width: 100%;
  }
}
