/* ===== GUIDE PAGES — Shared Styles ===== */

/* --- Hero Banner --- */
.guide-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 2rem 3rem;
}

.guide-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}

.guide-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 30%, rgba(10,10,10,0.7) 70%, var(--black) 100%),
    radial-gradient(ellipse at center bottom, rgba(255,20,147,0.12) 0%, transparent 60%);
}

.guide-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.guide-hero .label {
  display: block;
  margin-bottom: 1rem;
}

.guide-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.guide-hero .hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Intro blurb --- */
.guide-intro {
  padding: 2rem 2rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guide-intro p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.9;
}

/* --- Activities grid --- */
.guide-activities {
  padding: 2rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.activity-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--glass-border);
  align-items: start;
}

.activity-card:first-child {
  border-top: 1px solid var(--glass-border);
}

.activity-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  opacity: 0.6;
  text-align: center;
  padding-top: 0.1rem;
}

.activity-body {}

.activity-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 0.35rem 0.8rem;
  background: rgba(255,20,147,0.1);
  border: 1px solid rgba(255,20,147,0.2);
  margin-bottom: 0.8rem;
}

.activity-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.activity-body p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.85;
  max-width: 650px;
}

/* --- CTA Section --- */
.guide-cta {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.guide-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,20,147,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.guide-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.guide-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.guide-cta p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.guide-cta .phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 2rem;
  display: block;
  letter-spacing: 0.1em;
}

/* --- Back to home link --- */
.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 2rem;
}

.guide-back:hover {
  color: #ff3da6;
}

.guide-back .arrow {
  transition: transform 0.3s ease;
}

.guide-back:hover .arrow {
  transform: translateX(-4px);
}

/* --- Cross-link banner --- */
.guide-crosslink {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.guide-crosslink p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.guide-crosslink .btn-outline {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.guide-crosslink .btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .guide-hero {
    min-height: 50vh;
    padding: 3rem 1.5rem 4rem;
  }

  .guide-intro {
    padding: 1.5rem 1.5rem 2rem;
  }

  .guide-activities {
    padding: 1rem 1.5rem 4rem;
  }

  .activity-card {
    grid-template-columns: 50px 1fr;
    gap: 1.2rem;
    padding: 2rem 0;
  }

  .activity-number {
    font-size: 2.5rem;
  }

  .activity-body h3 {
    font-size: 1.4rem;
  }

  .activity-body p {
    font-size: 0.85rem;
  }

  .guide-cta {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .activity-card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .activity-number {
    text-align: left;
    font-size: 2rem;
  }
}
