/* Multi-page layout */
.page-hero {
  padding: 8rem 0 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero .section-title {
  margin-bottom: 0.75rem;
}

.page-hero .section-sub {
  max-width: 560px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--premium-muted, rgba(255, 255, 255, 0.5));
  margin-bottom: 1rem;
}

.page-breadcrumb a {
  color: var(--premium-orange, #FF6B35);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

main.page-main {
  min-height: 50vh;
}

/* Subpages: tighter spacing below hero, no invisible reveal gap */
.page-main > .section {
  padding-top: 2.5rem;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.page-main > .section.reveal,
.page-main > .section.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.page-main > .contact--premium,
.page-main > .community {
  padding-top: 2.5rem;
}

/* Home explore grid */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.explore-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.explore-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.explore-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.explore-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.explore-card:hover .explore-card__img img {
  transform: scale(1.06);
}

.explore-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.explore-card__body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
}

.explore-card__body p {
  font-size: 0.85rem;
  color: var(--premium-muted, rgba(255, 255, 255, 0.55));
  margin: 0;
  line-height: 1.5;
}

.explore-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--premium-orange, #FF6B35);
}

.home-cta-band {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 107, 53, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-cta-band h2 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.home-cta-band p {
  color: var(--premium-muted);
  margin: 0 0 1.5rem;
}

.home-cta-band__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.header__nav a.is-active,
.mobile-nav a.is-active {
  color: var(--premium-orange, #FF6B35) !important;
}

.mobile-bottom-nav a.is-active {
  color: var(--premium-orange, #FF6B35);
}

@media (max-width: 900px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 7rem 0 2.5rem;
  }
}
