/* Shared couples fixed chrome under the audience switcher.
   Page-specific visual styles stay in each page's <style> block. */

#adultBanner,
#adultBanner-legacy {
  display: none !important;
}

/* Brand row — page-nav is the primary section menu; no hamburger / duplicate links */
.nav {
  position: fixed !important;
  top: 52px !important;
  left: 0;
  right: 0;
  z-index: 500;
  height: 60px !important;
  padding: 0 3rem !important;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.nav-toggle,
.nav-links {
  display: none !important;
}

.page-nav {
  position: fixed !important;
  top: 112px !important; /* 52 audience + 60 brand */
  left: 0;
  right: 0;
  z-index: 490;
  margin-top: 0 !important;
  background: var(--bg4, #1a2420);
  border-bottom: 1px solid var(--border2, rgba(255, 255, 255, 0.08));
  padding: 0 3rem;
  display: flex !important;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3, #6a5e52);
  text-decoration: none;
  padding: 0.9rem 1.2rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.page-nav a:hover {
  color: var(--text, #ddd0bc);
}

.page-nav a.here,
.page-nav a[aria-current="page"] {
  color: var(--gold, #c4a35a);
  border-bottom-color: var(--gold, #c4a35a);
}

.page-nav-fixed-spacer {
  height: 60px !important;
}

/* Slim contact footer + crisis (after site-key) */
.crisis-bar {
  background: #0a1410;
  padding: 1rem 5vw;
  text-align: center;
  font-size: 0.82rem;
  color: #6a5e52;
}

.crisis-bar a {
  color: var(--gold, #c4a35a);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    padding: 0 5vw !important;
  }
  .page-nav {
    padding: 0 5vw;
  }
}

/* Motifs: decorative only — never above copy, never into the reading column */
img.motif {
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  user-select: none !important;
  max-width: min(32vw, 320px) !important;
}
.page-band,
.s-teal,
.s-mid,
.cta-section,
.quote-section {
  overflow: hidden;
}
.page-band__inner,
.section-wrap,
.cta-inner,
.quote-inner,
.body-copy,
.display-h2,
.page-band h1 {
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  img.motif { display: none !important; }
}


/* If reveal JS ever breaks again, don't leave the page blank */
@keyframes reveal-failsafe {
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: reveal-failsafe 0.01s linear 1.5s forwards;
}


/* Failsafe if reveal JS fails — .rx pages (couples home/contact) */
@keyframes rx-failsafe {
  to { opacity: 1; transform: none; }
}
.rx {
  animation: rx-failsafe 0.01s linear 1.2s forwards;
}
