/* ═══════════════════════════════════════════════════════════
   Sand & Sky 30A — Subpage Styles (FAQ, Policies, etc.)
   ═══════════════════════════════════════════════════════════ */

/* ─── PAGE HEADER (mini hero) ─────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3060 60%, #223b70 100%);
  padding: 8rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(74,171,219,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 60%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}
.page-breadcrumb a:hover { color: var(--sky); }
.page-breadcrumb .breadcrumb-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.6rem;
}
.page-breadcrumb .breadcrumb-current {
  color: rgba(255,255,255,0.65);
}

.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-header-title em {
  font-style: italic;
  color: var(--sky);
}

.page-header-subtitle {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* Wave at bottom of page header */
.page-header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
}

/* ─── SUBPAGE MAIN ────────────────────────────────────────── */
.subpage-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ─── BACK TO HOME LINK ──────────────────────────────────── */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.25s ease, gap 0.25s ease;
}
.back-home:hover {
  color: var(--navy);
  gap: 0.6rem;
}
.back-home svg {
  transition: transform 0.25s ease;
}
.back-home:hover svg {
  transform: translateX(-2px);
}

/* ─── SUBPAGE SECTION TITLES ─────────────────────────────── */
.subpage-section {
  margin-bottom: 3rem;
}

.subpage-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--navy-mid);
  margin-bottom: 2rem;
  max-width: 680px;
}

/* ─── CTA BANNER (bottom of subpages) ────────────────────── */
.subpage-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--sand);
  border-radius: 20px;
  margin-top: 2rem;
}
.subpage-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.subpage-cta-text {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.subpage-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: white;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  transition: all 0.25s ease;
}
.subpage-cta-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-header {
    padding: 7rem 1.5rem 2.5rem;
  }
  .subpage-main {
    padding: 2rem 1.25rem 4rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 6rem 1.25rem 2rem;
  }
}
