/* ═══════════════════════════════════════════════
   PRAY PARTY REPEAT — SHARED STYLES
   Palette: original site warm whites / sage greens
   Structure: inoneheart layout system
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;500&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #FDFAF6;
  --bg2:      #F5F0E8;
  --bg3:      #EDE6D8;
  --green:    #3D5A47;
  --green2:   #4E7060;
  --green-lt: #6B8F76;
  --green-dim: rgba(61,90,71,0.08);
  --charcoal: #1E1E1E;
  --body:     #3A3A3A;
  --muted:    rgba(30,30,30,0.5);
  --hairline:  rgba(61,90,71,0.25);
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ──────────────────────────────── */
html, html *, html *::before, html *::after { cursor: none !important; }

/* Trailing glow orb */
#cursor {
  width: 54px; height: 54px;
  background: radial-gradient(circle,
    rgba(74,222,128,0.22) 0%,
    rgba(34,197,94,0.09) 45%,
    transparent 70%
  );
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
  margin: -27px 0 0 -27px;
  transition: transform 0.22s ease, background 0.22s ease;
}
#cursor.on-link {
  transform: scale(1.9);
  background: radial-gradient(circle,
    rgba(74,222,128,0.38) 0%,
    rgba(34,197,94,0.16) 45%,
    transparent 70%
  );
}

/* Crystal image cursor */
#cursor-crystal {
  width: 28px; height: 34px;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  margin: -1px 0 0 -10px;
  transform: rotate(-15deg);
  transform-origin: 50% 3%;
  filter: drop-shadow(0 3px 10px rgba(0,200,80,0.5));
  transition: transform 0.15s ease, filter 0.15s ease;
}
#cursor-crystal.on-link {
  transform: rotate(-15deg) scale(1.35);
  filter: drop-shadow(0 4px 14px rgba(0,230,100,0.7));
}
#cursor-dot { display: none; }

/* ── NAV OVER DARK HERO ─────────────────── */
nav.over-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.78); }
nav.over-dark:not(.scrolled) .nav-links a:hover { color: #fff; }
nav.over-dark:not(.scrolled) .nav-brand { color: rgba(255,255,255,0.92); }

/* ── NAV ──────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 var(--hairline);
}
.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--green);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--green2); }

/* ── SECTION SHARED ──────────────────────── */
section { padding: 110px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-lt);
  display: block;
  margin-bottom: 18px;
}
.hairline { width: 50px; height: 1px; background: var(--green-lt); margin-bottom: 28px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 26px;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--green); }
.body-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  max-width: 580px;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-green {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 14px 36px;
  text-decoration: none;
  border: none;
  transition: background 0.3s;
}
.btn-green:hover { background: var(--green2); }
.btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--hairline);
  padding: 14px 36px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--green); background: var(--green-dim); }
.text-link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}
.text-link:hover { border-color: var(--green); }

/* ── MARQUEE ──────────────────────────────── */
.marquee-strip {
  background: var(--green);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 32px;
}
.marquee-sep { color: rgba(255,255,255,0.3); padding: 0 4px; }

/* ── SCROLL REVEAL ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  padding: 160px 0 90px;
  background: var(--bg2);
  border-bottom: 1px solid var(--hairline);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
}
.page-hero-title em { font-style: italic; color: var(--green); }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--green);
  padding: 56px 60px 40px;
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: 'Jost', sans-serif;
}
.footer-links-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 10px; }
.footer-links-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: color 0.3s;
}
.footer-links-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: #fff; color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: 'Jost', sans-serif;
}

/* ── FORM ─────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 11px 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--green); }
.form-textarea { resize: none; height: 90px; }
::placeholder { color: rgba(30,30,30,0.3); }

/* ── HAMBURGER ────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
  cursor: pointer;
  z-index: 102;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--green);
  transition: transform 0.32s ease, opacity 0.22s ease;
}
nav.over-dark:not(.scrolled) .nav-hamburger span { background: rgba(255,255,255,0.85); }
nav.scrolled .nav-hamburger span { background: var(--green); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ─────────────────── */
.nav-mobile-menu {
  position: fixed; inset: 0;
  background: rgba(14,20,16,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 101;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.36s ease;
}
.nav-mobile-menu.open { opacity: 1; pointer-events: all; }
.nav-mobile-links {
  list-style: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  margin-bottom: 44px;
}
.nav-mobile-links li {
  overflow: hidden;
}
.nav-mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 300; color: rgba(255,255,255,0.82);
  text-decoration: none; letter-spacing: 0.02em;
  display: block; padding: 10px 0;
  transition: color 0.25s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: #7fffd4; }
.nav-mobile-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px auto;
}
.nav-mobile-cta {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; background: var(--green);
  padding: 14px 44px; text-decoration: none;
  transition: background 0.3s;
}
.nav-mobile-cta:hover { background: var(--green2); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  nav, nav.scrolled { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 24px; }
  section { padding: 72px 0; }
  .page-hero { padding: 120px 0 60px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
