/* hike-landing.css
 * Phoenix Family — HIKE Reading Program landing page
 */

/* ---------------   TOKENS -------------- */
:root {
  --hike-gold:       #FFB81C;
  --hike-gold-dark:  #d4970f;
  --hike-gold-light: #fff8e6;
  --hike-red-light:  #fde8ec;
}

/* ---------------  HERO  --------------- */
.hike-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}

.hike-hero__img-panel {
  position: relative;
  overflow: hidden;
  background: var(--pf-soft);
}
.hike-hero__img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
  animation: hikeZoom 22s ease-in-out infinite alternate;
}
@keyframes hikeZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.08); }
}
.hike-hero__img-panel::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 56px;
  background: var(--pf-bg);
  clip-path: ellipse(100% 50% at 100% 50%);
}

.hike-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  background: var(--pf-bg);
  position: relative;
}
.hike-hero__content::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hike-hero__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hike-hero__pf-logo  { height: 36px; width: auto; }
.hike-hero__logo-divider {
  display: block;
  width: 1px; height: 28px;
  background: var(--pf-border);
  flex-shrink: 0;
}
.hike-hero__hike-logo { height: 36px; width: auto; }

.hike-hero__kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pf-red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hike-hero__kicker::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--pf-red);
  display: block;
  flex-shrink: 0;
}

.hike-hero__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pf-dark);
  margin-bottom: 20px;
}
.hike-hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--pf-red);
}

.hike-hero__body {
  font-size: 1rem;
  line-height: 1.78;
  color: #555;
  max-width: 400px;
  margin-bottom: 36px;
}

.hike-hero__paths {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}
.hike-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: var(--pf-radius-sm);
  text-decoration: none;
  transition: transform var(--pf-transition), box-shadow var(--pf-transition);
}
.hike-path:hover { transform: translateY(-2px); box-shadow: var(--pf-shadow-md); text-decoration: none; }
.hike-path--primary { background: var(--pf-red); color: #fff; box-shadow: 0 4px 18px rgba(187,22,84,0.22); }
.hike-path--primary:hover { color: #fff; }
.hike-path--secondary { background: var(--pf-bg); color: var(--pf-dark); border: 1.5px solid var(--pf-border); }
.hike-path--secondary:hover { color: var(--pf-dark); border-color: var(--pf-dark); }
.hike-path__label { font-size: 0.75rem; font-weight: 500; opacity: 0.75; display: block; margin-bottom: 2px; }
.hike-path__action { font-size: 0.95rem; font-weight: 700; display: block; }

/* ---------------  WHAT IS HIKE  --------------- */
.hike-what__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
}

.hike-what__stats { display: flex; flex-direction: column; gap: 16px; }

.hike-stat {
  padding: 32px 28px;
  border-radius: var(--pf-radius-md);
  background: var(--hike-red-light);
}
.hike-stat--gold { background: var(--hike-gold-light); }

.hike-stat__number {
  font-family: 'Fraunces', serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pf-red);
  margin-bottom: 10px;
}
.hike-stat--gold .hike-stat__number { color: var(--hike-gold-dark); }
.hike-stat__number span { font-size: 2rem; font-weight: 500; }
.hike-stat__label { font-size: 0.9rem; line-height: 1.6; color: var(--pf-text); }

.hike-what__copy .pf-h2 { margin-bottom: 18px; }
.hike-what__copy .pf-text { margin-bottom: 24px; }

/* ---------------  NEW VOLS  --------------- */

.hike-new { padding-bottom: 72px; }

.hike-roles {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.hike-role {
  background: var(--pf-bg);
  border: 1.5px solid var(--pf-border);
  border-radius: var(--pf-radius-md);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--pf-transition), transform var(--pf-transition);
}
.hike-role:hover { box-shadow: var(--pf-shadow-md); transform: translateY(-3px); }
.hike-role--featured { background: var(--hike-red-light); border-color: var(--pf-red); }
.hike-role--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--pf-red);
  border-radius: var(--pf-radius-md) var(--pf-radius-md) 0 0;
}
.hike-role__icon { font-size: 1.8rem; margin-bottom: 12px; line-height: 1; }
.hike-role .pf-h3 { margin-bottom: 6px; }
.hike-role__tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pf-dark); background: var(--hike-gold);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 12px;
}
.hike-role p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 10px; }
.hike-role p:last-child { margin-bottom: 0; }
.hike-role__note { font-size: 0.85rem !important; color: var(--pf-red) !important; font-style: italic; }

.hike-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--pf-bg);
  border: 1.5px solid var(--pf-border);
  border-radius: var(--pf-radius-md);
  padding: 32px 36px;
}
.hike-step { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
.hike-step__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--hike-gold); color: var(--pf-dark);
  font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hike-step strong { font-size: 0.92rem; display: block; margin-bottom: 4px; }
.hike-step p { font-size: 0.83rem; line-height: 1.6; color: #555; margin: 0; }
.hike-step__arrow { font-size: 1.2rem; color: var(--pf-border); flex-shrink: 0; align-self: center; }

/* ---------------  RETURNING VOLS  --------------- */
.hike-returning {
  background: linear-gradient(135deg, var(--pf-red) 0%, #8f1040 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hike-returning::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -180px; right: -140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hike-returning__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hike-return-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--pf-radius-md);
  padding: 28px 24px;
  text-decoration: none; color: #fff;
  display: flex; align-items: center; gap: 16px;
  transition: background var(--pf-transition), transform var(--pf-transition);
}
.hike-return-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); color: #fff; text-decoration: none; }
.hike-return-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.hike-return-card__city { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.hike-return-card__label { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; color: #fff; }
.hike-return-card__sub { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.hike-return-card__arrow { margin-left: auto; font-size: 1.1rem; color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* ---------------  CLOSING CTA  --------------- */
.hike-close { background: var(--pf-soft); }

/* ---------------  FADE UP  --------------- *//
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------------  RESPONSIVE   --------------- */
@media (max-width: 1080px) {
  .hike-hero { grid-template-columns: 1fr; min-height: auto; }
  .hike-hero__img-panel { height: 60vw; max-height: 400px; }
  .hike-hero__img-panel::after { display: none; }
  .hike-hero__content { padding: 48px 24px 64px; }
  .hike-hero__paths { max-width: 100%; }
  .hike-what__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .hike-roles { grid-template-columns: 1fr; gap: 14px; }
  .hike-steps { flex-direction: column; gap: 20px; padding: 24px; }
  .hike-step__arrow { display: none; }
  .hike-returning__cards { grid-template-columns: 1fr; gap: 12px; }
}
