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

:root {
  --coral: #FF6F4D;
  --dark-green: #264653;
  --teal: #1A4A45;
  --beige: #F7F3EF;
  --warm-white: #FDFAF7;
  --dark: #1A1A1A;
  --muted: #6B6B6B;
  --gold: #C9A96E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── CURSOR ─── */
.cursor-dot {
  width: 8px; height: 8px; background: var(--coral); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease; mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1.5px solid rgba(255,111,77,0.4);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
  transition: all 0.15s ease; mix-blend-mode: multiply;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  padding: 0 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,247,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: box-shadow 0.4s ease;
}
nav.scrolled { box-shadow: 0 8px 40px rgba(26,26,26,0.08); }
.logo {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
  color: var(--coral); letter-spacing: 1px; text-decoration: none;
}
.logo span { color: var(--dark-green); font-style: italic; font-weight: 300; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  color: var(--dark); position: relative; transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--coral); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-cta {
  background: var(--coral); color: white; border: none;
  padding: 12px 28px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-cta::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: rgba(255,255,255,0.2);
  transition: left 0.4s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,111,77,0.4); }
.btn-cta:hover::before { left: 100%; }
.btn-secondary {
  padding: 12px 28px; border: 1.5px solid var(--dark); border-radius: 8px;
  background: transparent; color: var(--dark);
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--dark); color: white; }

/* ─── SECTION SHARED ─── */
.section-label {
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--coral); }
h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 300; line-height: 1.15; color: var(--dark);
}
h2 em { font-style: italic; color: var(--coral); }

/* ─── FAITH LINE ─── */
.faith-line {
  font-size: 12px; font-style: italic; color: var(--muted);
  border-left: 2px solid var(--coral); padding-left: 14px; line-height: 1.7;
}
.faith-center {
  text-align: center; font-style: italic; font-size: 13px; color: var(--muted);
  border-top: 1px solid rgba(201,169,110,0.2); padding-top: 40px; margin-top: 64px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: white; padding: 80px 80px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo { display: block; margin-bottom: 16px; font-size: 28px; }
.footer-brand p {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 240px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; font-style: italic; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.2); font-family: 'Montserrat', sans-serif; letter-spacing: 1px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%,-50%) scale(1.06); opacity: 0.6; }
}
@keyframes shimmer { 0%{left:-100%} 100%{left:100%} }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav, footer { padding-left: 40px; padding-right: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 0 24px; }
  footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  h2 { font-size: 32px; }
}
