/* =========================================================
   Start Here funnel page — /start-here
   Inherits hub.css variables. Sage / cream / stone palette.
   ========================================================= */

/* ── Hero ── */
.sh-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sh-hero-bg {
  position: absolute;
  inset: 0;
}
.sh-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,41,38,0.45) 0%, rgba(44,41,38,0.65) 100%);
}
.sh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 2rem;
}
.sh-hero-label {
  color: rgba(253,251,247,0.8);
  margin-bottom: 1rem;
}
.sh-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--hub-white);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}
.sh-hero-headline em {
  font-style: italic;
  color: var(--hub-stone);
}
.sh-hero-sub {
  font-size: 1.1rem;
  color: rgba(253,251,247,0.88);
  margin: 0 0 2.4rem;
  line-height: 1.6;
}
.sh-hero-cta {
  display: inline-block;
  background: var(--hub-sage);
  color: var(--hub-white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.sh-hero-cta:hover { background: var(--hub-sage-dark); transform: translateY(-1px); }
.sh-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(253,251,247,0.5);
  font-size: 1.2rem;
  animation: sh-bounce 2s ease-in-out infinite;
}
@keyframes sh-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Shared section wrapper ── */
.sh-section { padding: 5rem 0; }
.sh-step-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Step label row ── */
.sh-step-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.sh-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--hub-stone);
  line-height: 1;
  user-select: none;
}
.sh-step-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--hub-forest);
  margin: 0 0 0.8rem;
  line-height: 1.15;
}
.sh-step-body {
  color: var(--hub-warm-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 3rem;
}

/* ── Pillar Grid (Step 1) ── */
.sh-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.sh-pillar-card {
  position: relative;
  background: var(--hub-white);
  border: 1.5px solid var(--hub-stone);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
  overflow: hidden;
}
.sh-pillar-card:hover,
.sh-pillar-card:focus-visible {
  border-color: var(--hub-sage);
  box-shadow: 0 6px 24px rgba(122,158,126,0.14);
  transform: translateY(-2px);
}
.sh-pillar-icon {
  font-size: 1.8rem;
  color: var(--hub-sage);
  line-height: 1;
}
.sh-pillar-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--hub-forest);
  margin: 0;
}
.sh-pillar-manifesto {
  font-size: 0.92rem;
  color: var(--hub-warm-gray);
  line-height: 1.65;
  margin: 0;
}
.sh-pillar-cta {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--hub-sage-dark);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Articles revealed on hover/focus */
.sh-pillar-articles {
  display: none;
  background: var(--hub-cream);
  border-top: 1px solid var(--hub-stone);
  padding: 0.9rem 0 0;
  margin-top: 0.5rem;
  flex-direction: column;
  gap: 0.3rem;
}
.sh-pillar-card:hover .sh-pillar-articles,
.sh-pillar-card:focus-visible .sh-pillar-articles {
  display: flex;
}
.sh-pillar-articles-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hub-warm-gray);
  margin: 0 0 0.3rem;
}
.sh-pillar-article-title {
  font-size: 0.82rem;
  color: var(--hub-charcoal);
  line-height: 1.45;
}

/* ── Quiz Section (Step 2) ── */
.sh-quiz-section {
  background: var(--hub-cream);
  border-top: 1px solid var(--hub-stone);
  border-bottom: 1px solid var(--hub-stone);
}
.sh-quiz-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sh-quiz-body { color: var(--hub-charcoal); }

.sh-archetypes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}
.sh-archetype-card {
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  border-radius: 4px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.sh-archetype-desc {
  font-size: 0.88rem;
  color: var(--hub-warm-gray);
  line-height: 1.6;
  margin: 0;
}
.sh-quiz-cta-wrap { text-align: center; }
.sh-quiz-cta {
  display: inline-block;
  background: var(--hub-forest);
  color: var(--hub-white);
  padding: 1.1rem 3rem;
  border-radius: 2px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  margin-bottom: 1rem;
}
.sh-quiz-cta:hover { background: var(--hub-sage-dark); transform: translateY(-1px); }
.sh-quiz-note {
  font-size: 0.8rem;
  color: var(--hub-warm-gray);
  margin: 0;
}

/* Reuse quiz badge styles from quiz.css via class — ensure quiz.css is NOT loaded here.
   Inline minimal badge styles so this page stands alone. */
.quiz-archetype-badge {
  display: inline-block;
  padding: 0.35em 0.9em;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  width: fit-content;
}
.quiz-badge--faith        { background: #e8f0e9; color: #2D3E33; }
.quiz-badge--health       { background: #e6f2f0; color: #1d4a41; }
.quiz-badge--serenity     { background: #f0eee8; color: #4e3e2a; }
.quiz-badge--intentional  { background: #ece8f0; color: #3a2d4e; }

/* ── Collections Grid (Step 3) ── */
.sh-coll-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.sh-coll-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hub-stone);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.15s;
}
.sh-coll-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.sh-coll-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.sh-coll-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sh-coll-card:hover .sh-coll-img { transform: scale(1.04); }
.sh-coll-pillar {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.65em;
  border-radius: 999px;
  background: rgba(253,251,247,0.9);
  color: var(--hub-charcoal);
}
.sh-coll-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.sh-coll-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--hub-forest); margin: 0; }
.sh-coll-tagline { font-size: 0.85rem; color: var(--hub-warm-gray); line-height: 1.5; margin: 0; flex: 1; }
.sh-coll-cta { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--hub-sage-dark); margin-top: auto; }

/* ── Bestsellers Strip ── */
.sh-bestsellers-section { background: var(--hub-cream); border-top: 1px solid var(--hub-stone); }
.sh-bs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.sh-bs-card {
  text-decoration: none;
  background: var(--hub-white);
  border: 1px solid var(--hub-stone);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.15s;
}
.sh-bs-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
.sh-bs-img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--hub-cream); }
.sh-bs-img { width: 100%; height: 100%; object-fit: cover; }
.sh-bs-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--hub-stone);
}
.sh-bs-body { padding: 0.9rem; flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.sh-bs-name { font-size: 0.88rem; font-weight: 500; color: var(--hub-charcoal); margin: 0; line-height: 1.4; }
.sh-bs-desc { font-size: 0.78rem; color: var(--hub-warm-gray); line-height: 1.5; margin: 0; flex: 1; }
.sh-bs-source {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-sage-dark);
  margin-top: 0.4rem;
}
.sh-bs-all-wrap { text-align: center; }
.sh-bs-all {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--hub-sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sh-bs-all:hover { color: var(--hub-forest); }

/* ── Email Capture ── */
.sh-email-section {
  background: var(--hub-forest);
  padding: 5rem 0;
}
.sh-email-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sh-email-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--hub-white);
  margin: 0 0 0.8rem;
}
.sh-email-body { font-size: 0.95rem; color: rgba(253,251,247,0.78); line-height: 1.7; margin: 0; }
.sh-email-fields {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.sh-email-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201,191,168,0.5);
  border-radius: 2px;
  background: rgba(253,251,247,0.08);
  color: var(--hub-white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.sh-email-input::placeholder { color: rgba(253,251,247,0.45); }
.sh-email-input:focus { border-color: var(--hub-sage); }
.sh-email-btn {
  padding: 0.95rem 1.6rem;
  background: var(--hub-sage);
  color: var(--hub-white);
  border: none;
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s;
}
.sh-email-btn:hover { background: var(--hub-sage-dark); }
.sh-email-note { font-size: 0.78rem; color: rgba(253,251,247,0.45); margin: 0.5rem 0 0; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .sh-pillar-grid { grid-template-columns: 1fr; }
  .sh-archetypes-grid { grid-template-columns: 1fr 1fr; }
  .sh-coll-grid { grid-template-columns: 1fr 1fr; }
  .sh-bs-grid { grid-template-columns: 1fr 1fr; }
  .sh-email-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sh-step-num { font-size: 2.5rem; }
}
@media (max-width: 420px) {
  .sh-archetypes-grid { grid-template-columns: 1fr; }
  .sh-coll-grid { grid-template-columns: 1fr; }
  .sh-bs-grid { grid-template-columns: 1fr; }
}
