:root {
  --gold: #b8963e;
  --gold-light: #d4af5a;
  --gold-pale: #f5edd8;
  --gold-xpale: #fdf8ef;
  --cream: #faf7f2;
  --dark: #111008;
  --dark2: #1e1a0e;
  --text: #2c2515;
  --muted: #7a6a50;
  --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(17,16,8,0.97);
  backdrop-filter: blur(12px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  border-bottom: 1px solid rgba(184,150,62,0.25);
}

.nav-logo {
  display: flex; align-items: center;
}
.nav-logo img {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-give {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-give:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 8vw 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23111008'/%3E%3Crect width='1' height='1' x='0' y='0' fill='%23b8963e' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Diagonal gold accent line */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 15%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.15;
}

.hero-fleur {
  position: absolute;
  right: 6vw; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(180px, 22vw, 320px);
  color: rgba(184,150,62,0.04);
  font-family: 'Cormorant Garamond', serif;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}

.hero-logo-wrap {
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-logo-wrap img {
  height: clamp(60px, 10vw, 110px);
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(184,150,62,0.3));
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-tagline strong {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 1s 0.3s ease both;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,150,62,0.45);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-service-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(184,150,62,0.12);
  border-top: 1px solid rgba(184,150,62,0.2);
  padding: 1.1rem 8vw;
  display: flex; align-items: center; gap: 3rem;
  animation: fadeUp 1s 0.4s ease both;
}
.service-item {
  display: flex; align-items: center; gap: 0.75rem;
}
.service-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.service-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
}
.service-value {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  display: block;
}

/* ── WALL ART DIVIDER ── */
.art-divider {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.art-divider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.8);
}
.art-divider-text {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
}
.art-divider-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  line-height: 1.4;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  max-width: 700px;
  padding: 0 2rem;
}
.art-divider-quote span {
  color: var(--gold-light);
  font-style: normal;
}
.art-divider-ref {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

/* ── PURPOSE SECTION ── */
.purpose {
  background: var(--cream);
  padding: 7rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2rem;
}

.gold-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.purpose-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(184,150,62,0.15);
  border-radius: 4px;
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.value-card:hover { border-color: rgba(184,150,62,0.4); box-shadow: 0 8px 32px rgba(184,150,62,0.1); transform: translateY(-2px); }
.value-card:hover::before { transform: scaleY(1); }

.value-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.value-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.value-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── NEXT STEPS ── */
.next-steps {
  background: var(--dark2);
  padding: 7rem 8vw;
  position: relative;
  overflow: hidden;
}
.next-steps::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.08), transparent 70%);
  pointer-events: none;
}

.next-steps-header {
  text-align: center;
  margin-bottom: 4rem;
}
.next-steps-header .section-title { color: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  background: rgba(184,150,62,0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(184,150,62,0.3);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ── SERVE SECTION ── */
.serve {
  background: var(--gold-xpale);
  padding: 7rem 8vw;
}

.serve-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.serve-needs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.need-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.need-card:hover { box-shadow: 0 4px 24px rgba(184,150,62,0.15); transform: translateX(4px); }

.need-info {}
.need-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.need-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.need-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(184,150,62,0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}
.btn-serve {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.btn-serve:hover { color: var(--dark); border-color: var(--dark); }

/* ── SAINT TEAMS ── */
.saints {
  background: var(--cream);
  padding: 7rem 8vw;
}
.saints-header {
  text-align: center;
  margin-bottom: 4rem;
}
.saints-acronym {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.saint-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--dark);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}

.saints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.saint-card {
  background: var(--white);
  border: 1px solid rgba(184,150,62,0.15);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.saint-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,150,62,0.1); transform: translateY(-3px); }

.saint-avatar {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
}
.saint-name {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.saint-contact {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.saint-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,62,0.4);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.saint-link:hover { color: var(--dark); border-color: var(--dark); }

/* ── EVENTS PREVIEW ── */
.events {
  background: var(--dark);
  padding: 7rem 8vw;
}
.events-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem;
}
.events-header .section-title { color: var(--white); margin-bottom: 0; }
.view-all {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,62,0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.view-all:hover { color: var(--gold-light); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.event-card:hover { border-color: rgba(184,150,62,0.5); transform: translateY(-3px); }

.event-date-bar {
  background: var(--gold);
  padding: 0.75rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.event-month {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.event-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}
.event-body { padding: 1.4rem 1.2rem; }
.event-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.event-time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(184,150,62,0.2);
  padding: 4rem 8vw 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img { height: 48px; margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 300px;
}

.footer-col-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.footer-fb {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-fb:hover { color: var(--gold); }
.fb-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-family: 'Lato', sans-serif;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }

  .hero { padding: 100px 6vw 80px; }
  .hero-fleur { display: none; }

  .purpose { grid-template-columns: 1fr; gap: 3rem; }
  .purpose-right { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .serve-inner { grid-template-columns: 1fr; gap: 3rem; }
  .saints-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── FOOTER SOCIAL ── */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.social-link {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }
.social-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-family: 'Lato', sans-serif;
}

/* ── FOOTER CONTACT FORM ── */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-form input,
.footer-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,62,0.2);
  border-radius: 3px;
  padding: 0.65rem 0.9rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.footer-form input:focus,
.footer-form textarea:focus { border-color: var(--gold); }
.footer-form textarea { resize: vertical; min-height: 90px; }
.footer-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 0.75rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.footer-form button:hover { background: var(--gold-light); }

/* ── FOOTER MAP ── */
.footer-map iframe {
  display: block;
  width: 100%;
  border-radius: 3px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-map iframe:hover { opacity: 1; }
.footer-address {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.6rem;
}

/* ── HERO SLIDESHOW (crossfade) ── */
.hero-slideshow {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  overflow: hidden;
}

.hero-slideshow::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 160px; height: 100%;
  background: linear-gradient(to right, var(--dark), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-slideshow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 2;
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 2s ease;
}

.slide.active { opacity: 1; }

@media (max-width: 900px) {
  .hero-slideshow { display: none; }
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active { color: var(--gold-light); }