/* Start Here page styles */

/* ============== HOMEPAGE STRIP ============== */
.start-here-strip {
  padding-block: 0;
  margin-top: -1px; /* tuck under the hero */
  background: linear-gradient(90deg, #14213d 0%, #1c2a4a 100%);
  border-top: 1px solid rgba(180, 131, 22, 0.4);
  border-bottom: 1px solid rgba(180, 131, 22, 0.4);
}

.start-here-strip__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.start-here-strip__icon {
  width: 28px;
  height: 28px;
  color: #b48316;
  flex-shrink: 0;
}

.start-here-strip__icon svg {
  width: 100%;
  height: 100%;
}

.start-here-strip__text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: #f6efde;
  line-height: 1.4;
}

.start-here-strip__text strong {
  color: #b48316;
  font-weight: 700;
}

.start-here-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #14213d;
  background: #b48316;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
}

.start-here-strip__cta:hover {
  background: #d09a1d;
  transform: translateX(2px);
}

@media (max-width: 600px) {
  .start-here-strip__inner {
    text-align: center;
  }
  .start-here-strip__text {
    font-size: 14px;
    flex-basis: 100%;
    order: 2;
  }
  .start-here-strip__icon { order: 1; }
  .start-here-strip__cta { order: 3; }
}

/* ============== AGE CARDS (Step 1) ============== */
.sh-age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.sh-age-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-divider);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  box-shadow: 0 1px 2px rgba(20, 33, 61, 0.04);
}

.sh-age-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.12);
  border-color: rgba(180, 131, 22, 0.4);
}

.sh-age-card--featured {
  border: 2px solid #b48316;
  background: linear-gradient(180deg, #fdf8ea 0%, #ffffff 60%);
  box-shadow: 0 6px 16px rgba(180, 131, 22, 0.15);
}

.sh-age-card--featured:hover {
  box-shadow: 0 14px 32px rgba(180, 131, 22, 0.22);
}

.sh-age-card__cover-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  overflow: hidden;
}

.sh-age-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms ease;
}

.sh-age-card:hover .sh-age-card__cover {
  transform: scale(1.04);
}

.sh-age-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20, 33, 61, 0.92);
  color: #f6efde;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}

.sh-age-card__badge--gold {
  background: #b48316;
  color: #fff;
}

.sh-age-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sh-age-card__series {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-warm, #8e2a1f);
  font-weight: 600;
}

.sh-age-card__series--gold {
  color: #b48316;
}

.sh-age-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  color: #14213d;
}

.sh-age-card__desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0;
  flex: 1;
}

.sh-age-card__cta {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #b48316;
  margin-top: 4px;
  letter-spacing: 0.02em;
  transition: transform 220ms ease;
  display: inline-block;
}

.sh-age-card:hover .sh-age-card__cta {
  transform: translateX(4px);
}

/* ============== SERIES READING ORDER (Step 2) ============== */
.sh-series {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.sh-series:first-of-type {
  border-top: none;
  padding-top: 0;
}

.sh-series__head {
  margin-bottom: var(--space-6);
  text-align: center;
}

.sh-series__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #14213d;
}

.sh-series__meta {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b6b6b;
  font-weight: 500;
}

.sh-series__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sh-series__item {
  display: grid;
  grid-template-columns: 36px 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--color-divider);
  border-radius: 12px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.sh-series__item:hover {
  border-color: rgba(180, 131, 22, 0.45);
  transform: translateX(2px);
}

.sh-series__item--bundle {
  background: linear-gradient(90deg, #fdf8ea 0%, #ffffff 100%);
  border-color: rgba(180, 131, 22, 0.6);
}

.sh-series__item--coming {
  opacity: 0.85;
  background: var(--color-surface);
}

.sh-series__num {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  color: #b48316;
  text-align: center;
  line-height: 1;
}

.sh-series__item--bundle .sh-series__num {
  color: #b48316;
  font-size: 26px;
}

.sh-series__cover {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(20, 33, 61, 0.18);
  display: block;
}

.sh-series__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14213d;
  color: #b48316;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-align: center;
  border-radius: 6px;
}

.sh-series__body {
  min-width: 0;
}

.sh-series__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #14213d;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.25;
}

.sh-series__name:hover {
  color: #8e2a1f;
}

.sh-series__name--muted {
  color: #6b6b6b;
  cursor: default;
}

.sh-series__desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
}

.sh-series__desc a {
  color: #b48316;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============== GIFT BANNER (Step 3) ============== */
.sh-gift {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: #fff;
  border: 1px solid rgba(180, 131, 22, 0.45);
  border-radius: 18px;
  padding: var(--space-8);
  box-shadow: 0 4px 16px rgba(180, 131, 22, 0.1);
}

.sh-gift__icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fdf3d6;
  color: #b48316;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-gift__icon svg {
  width: 48px;
  height: 48px;
}

.sh-gift__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  margin: 6px 0 8px;
  color: #14213d;
  line-height: 1.2;
}

.sh-gift__desc {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
  color: #3a3a3a;
  margin: 0 0 var(--space-5);
}

/* ============== DARK MODE ============== */
@media (prefers-color-scheme: dark) {
  .sh-age-card { background: #1c2440; border-color: #2a3556; color: #f6efde; }
  .sh-age-card--featured { background: linear-gradient(180deg, #2a2a1a 0%, #1c2440 60%); }
  .sh-age-card__title { color: #f6efde; }
  .sh-age-card__desc { color: #cfcfd6; }
  .sh-series__item { background: #1c2440; border-color: #2a3556; }
  .sh-series__item--bundle { background: linear-gradient(90deg, #2a2a1a 0%, #1c2440 100%); }
  .sh-series__item--coming { background: #161d35; }
  .sh-series__title, .sh-series__name { color: #f6efde; }
  .sh-series__desc { color: #b8b8c2; }
  .sh-gift { background: #1c2440; }
  .sh-gift__title { color: #f6efde; }
  .sh-gift__desc { color: #cfcfd6; }
}

[data-theme="dark"] .sh-age-card { background: #1c2440; border-color: #2a3556; color: #f6efde; }
[data-theme="dark"] .sh-age-card--featured { background: linear-gradient(180deg, #2a2a1a 0%, #1c2440 60%); }
[data-theme="dark"] .sh-age-card__title { color: #f6efde; }
[data-theme="dark"] .sh-age-card__desc { color: #cfcfd6; }
[data-theme="dark"] .sh-series__item { background: #1c2440; border-color: #2a3556; }
[data-theme="dark"] .sh-series__item--bundle { background: linear-gradient(90deg, #2a2a1a 0%, #1c2440 100%); }
[data-theme="dark"] .sh-series__item--coming { background: #161d35; }
[data-theme="dark"] .sh-series__title, [data-theme="dark"] .sh-series__name { color: #f6efde; }
[data-theme="dark"] .sh-series__desc { color: #b8b8c2; }
[data-theme="dark"] .sh-gift { background: #1c2440; }
[data-theme="dark"] .sh-gift__title { color: #f6efde; }
[data-theme="dark"] .sh-gift__desc { color: #cfcfd6; }

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .sh-age-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .sh-gift {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }
}

@media (max-width: 600px) {
  .sh-series__item {
    grid-template-columns: 28px 60px 1fr;
    gap: 12px;
    padding: 12px 14px;
  }
  .sh-series__cover {
    width: 60px;
    height: 78px;
  }
  .sh-series__cover--placeholder {
    width: 60px;
    height: 78px;
    font-size: 10px;
  }
  .sh-series__name {
    font-size: 17px;
  }
  .sh-series__desc {
    font-size: 13px;
  }
  .sh-series__num {
    font-size: 18px;
  }
  .sh-age-card__title {
    font-size: 22px;
  }
  .sh-series__title {
    font-size: 24px;
  }
  .sh-gift__title {
    font-size: 24px;
  }
}
