/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: var(--sp-md); }
.footer__brand .mark { width: 32px; height: 32px; }
.footer__top p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 320px; margin-bottom: var(--sp-lg); }

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast);
}
.footer__socials a:hover { background: var(--coral); }
.footer__socials svg { width: 17px; height: 17px; color: var(--white); }

.footer__col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-lg);
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { font-size: 0.9rem; transition: color var(--dur-fast); }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding-top: var(--sp-xl);
  font-size: 0.82rem;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer__legal { display: flex; gap: var(--sp-lg); flex-wrap: wrap; }
.footer__legal a:hover { color: var(--white); }

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */

.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(11,42,111,0.1);
  padding: 10px var(--sp-lg);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
  transform: translateY(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.mobile-cta-bar.hide { transform: translateY(100%); }
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }
.mobile-cta-bar .btn { flex: 1; padding: 13px 16px; font-size: 0.88rem; }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   PHOTO PLACEHOLDER (replace with real photography)
   ============================================ */

.photo-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--lavender) 0%, var(--teal-tint) 55%, var(--yellow) 130%);
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.5), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(11,42,111,0.08), transparent 50%);
}
.photo-placeholder svg { position: relative; z-index: 1; width: 78%; max-width: 320px; }
.photo-placeholder .pp-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ============================================
   MISC UTILITIES
   ============================================ */

.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-0 { margin-top: 0 !important; }
.divider { height: 1px; background: var(--border-soft); border: none; margin: var(--sp-2xl) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 700px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }
